forked from amazon-ion/ion-schema-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (32 loc) · 854 Bytes
/
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
[package]
name = "ion-schema"
authors = ["Amazon Ion Team <[email protected]>"]
description = "Implementation of Amazon Ion Schema"
homepage = "https://github.com/amzn/ion-schema-rust"
repository = "https://github.com/amzn/ion-schema-rust"
license = "Apache-2.0"
readme = "README.md"
keywords = ["ion", "schema"]
exclude = [
"**/.git/**",
"**/.github/**",
"**/.travis.yml",
"**/.appveyor.yml",
"**/ion-schema-tests/**",
"**/ion-schema-schemas/isl/**",
"*.pdf"
]
version = "0.5.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ion-rs = "0.14.0"
thiserror = "1.0"
num-bigint = "0.3"
num-traits = "0.2"
chrono = "0.4"
regex = "1.5.6"
[dev-dependencies]
rstest = "0.9"
clap = {version = "2.33.3", features = ["yaml"]}
test-generator = "0.3.0"