-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
32 lines (30 loc) · 840 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
[workspace]
resolver = "2"
members = [
"baildon",
"baildon-store",
"baildon-glue"
]
[workspace.package]
version = "0.1.2"
authors = [
"garypen <[email protected]>",
]
license = "Apache-2.0"
repository = "https://github.com/garypen/baildon"
homepage = "https://github.com/garypen/baildon"
documentation = "https://github.com/garypen/baildon#readme"
edition = "2021"
[workspace.dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.6", features = ["derive"] }
dirs = "5.0.1"
futures = "0.3.28"
libc = "0.2.148"
rustyline = "12.0.0"
serde = { version = "1.0.188", features = ["derive", "rc"] }
strum = { version = "0.24.1", features = ["derive"] }
tokio = { version = "1.32.0", features = ["full"] }
tracing = "0.1.37"
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "json"] }