722f7fb782
Updates the requirements on [num](https://github.com/rust-num/num) to permit the latest version. - [Release notes](https://github.com/rust-num/num/releases) - [Changelog](https://github.com/rust-num/num/blob/master/RELEASES.md) - [Commits](https://github.com/rust-num/num/compare/num-0.3.0...num-0.4.0) --- updated-dependencies: - dependency-name: num dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
28 lines
633 B
TOML
28 lines
633 B
TOML
[package]
|
|
name = "edn"
|
|
version = "0.1.0"
|
|
authors = ["Joe Walker <jwalker@mozilla.com>"]
|
|
workspace = ".."
|
|
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/mozilla/mentat"
|
|
description = "EDN parser for Project Mentat"
|
|
readme = "./README.md"
|
|
|
|
[dependencies]
|
|
chrono = "~0.4"
|
|
itertools = "~0.9"
|
|
num = "~0.4"
|
|
ordered-float = "~2.5"
|
|
pretty = "~0.10"
|
|
uuid = { version = "~0.8", features = ["v4", "serde"] }
|
|
serde = { version = "~1.0", optional = true }
|
|
serde_derive = { version = "~1.0", optional = true }
|
|
peg = "~0.6"
|
|
|
|
[dev-dependencies]
|
|
serde_test = "~1.0"
|
|
serde_json = "~1.0"
|
|
|
|
[features]
|
|
serde_support = ["serde", "serde_derive"]
|