forked from momentohq/momento-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (39 loc) · 782 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[[bin]]
name = "momento"
path = "src/main.rs"
[package]
name = "momento-cli"
version = "0.11.9"
edition = "2018"
[dependencies]
colored = "2.0.0"
home = "0.5.3"
toml = "0.5.8"
maplit = "1.0.2"
configparser = "3.0.0"
regex = "1"
momento = "0.3.1"
[dev-dependencies]
assert_cmd = "2.0.2"
[dependencies.clap]
version = "3.0.10"
features = [ "derive",]
[dependencies.log]
version = "^0.4.14"
[dependencies.env_logger]
version = "^0.9.0"
[dependencies.tracing-subscriber]
version = "0.2.16"
features = [ "fmt",]
[dependencies.tokio]
version = "1"
features = [ "full",]
[dependencies.serde]
version = "1.0"
features = [ "derive",]
[dependencies.serde_json]
version = "1.0.79"
[dependencies.reqwest]
version = "0.11"
features = [ "json", "rustls-tls",]
default-features = false