-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
39 lines (33 loc) · 1.09 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "cjval"
version = "0.8.1"
description = "Schema-validation of CityJSON+CityJSONSeq datasets"
authors = ["Hugo Ledoux <[email protected]>"]
edition = "2021"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/cityjson/cjval"
repository = "https://github.com/cityjson/cjval"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
jsonschema = { version = "0.17.0", default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "2.0.0"
anyhow = "1.0.31"
indexmap = "1.9.1"
url = { version = "2.2.2", optional = true }
ansi_term = { version = "0.12", optional = true }
reqwest = { version = "0.11.5", optional = true }
tokio = { version = "1", features = ["full"], optional = true }
clap = { version = "4.5.4", features = ["derive"] }
[features]
build-binary = ["url", "ansi_term", "reqwest", "tokio"]
[[bin]]
name = "cjval"
path = "src/bin/cjval.rs"
required-features = ["build-binary"]
[[bin]]
name = "cjvalext"
path = "src/bin/cjvalext.rs"
required-features = ["build-binary"]