-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (39 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
40 lines (39 loc) · 1.02 KB
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
[workspace]
members = [
"tanu",
"tanu-core",
"tanu-derive",
"tanu-tui",
"tanu-integration-tests",
"examples",
]
resolver = "2"
[workspace.dependencies]
anyhow = { version = "1", features = ["backtrace"] }
async-trait = "0.1"
eyre = { version = "0.6", features = ["track-caller"] }
dotenv = "0.15"
futures = "0.3"
http = "1"
inventory = "0.3"
itertools = "0.13"
log = "0.4"
memoize = "0.5"
once_cell = "1"
pretty_assertions = "1"
hyper = { version = "1.8", features = ["full"] }
hyper-util = { version = "0.1", features = ["client-legacy", "http1", "http2", "tokio"] }
hyper-tls = "0.6"
http-body = "1"
http-body-util = "0.1"
bytes = "1"
serde = { version = "1", features = ["derive"] }
strum = { version = "0.26", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-log = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter", "registry"] }
test-case = "3"
url = "2"
tower = { version = "0.5", features = ["util"] }
tonic = { version = "0.14", features = ["transport"] }