-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
34 lines (32 loc) · 869 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
[package]
name = "manifester"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3.3", features = ["derive"] }
color-eyre = "0.6"
data-encoding = "2"
futures = "0.3"
futures-util = "0.3"
indoc = "2"
lazy-regex = "2"
nutype = { version = "0.2", features = ["serde"] }
reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls",
"json",
"stream",
] }
ring = "0.16"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
target-lexicon = "0.12"
textwrap = "0.16"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
toml = "0.7"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = { version = "2", features = ["serde"] }
[dev-dependencies]
maplit = "1"