-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
53 lines (47 loc) · 1.46 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "ion-cli"
version = "0.10.0"
authors = ["The Ion Team <[email protected]>"]
edition = "2021"
description = "Command line tool for working with the Ion data format."
repository = "https://github.com/amzn/ion-cli"
license = "Apache-2.0"
categories = ["command-line-utilities", "development-tools", "encoding", "parsing"]
keywords = ["format", "parse", "encode"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
clap = { version = "4.5.8", features = ["cargo", "env", "wrap_help"] }
colored = "2.0.0"
sha2 = "0.9"
sha3 = "0.9"
flate2 = "1.0"
infer = "0.15.0"
# ion-rs version must be pinned because we are using experimental features
# See https://github.com/amazon-ion/ion-cli/issues/155
ion-rs = { version = "1.0.0-rc.10", features = ["experimental", "experimental-ion-hash"] }
tempfile = "3.2.0"
ion-schema = "0.15.0"
lowcharts = "0.5.8"
serde = { version = "1.0.163", features = ["derive"] }
serde_json = { version = "1.0.81", features = ["arbitrary_precision", "preserve_order"] }
base64 = "0.21.1"
tera = { version = "1.18.1" }
convert_case = { version = "0.6.0" }
thiserror = "1.0.50"
zstd = "0.13.0"
termcolor = "1.4.1"
derive_builder = "0.20.0"
itertools = "0.13.0"
[target.'cfg(not(target_os = "windows"))'.dependencies]
pager = "0.16.1"
[dev-dependencies]
rstest = "~0.17.0"
assert_cmd = "~1.0.5"
tempfile = "~3.5.0"
[features]
default = []
[[bin]]
name = "ion"
test = true
bench = false