-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
33 lines (28 loc) · 855 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
[package]
name = "ministore"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.0", features = ["derive"] }
bincode = "1.3.3"
config = "0.13.3"
clap = { version = "4.1.14", features = ["cargo"] }
tonic = "0.8.3"
prost = "0.11"
tokio = { version = "1.27.0", features = ["fs", "rt-multi-thread"] }
strum = "0.24.1"
strum_macros = "0.24.3"
dotenv = "0.15.0"
toml = "0.7.3"
env_logger = "0.10.0"
tracing ={ version = "0.1.37", features = [ "log" ] }
tracing-subscriber = { version = "0.3", features = [ "env-filter" ] }
uuid = { version = "1.3.2", features=["v4"]}
tracing-test = "0.2.4"
[build-dependencies]
tonic-build = "0.8.4"
[target.'cfg(target_os = "linux")'.dependencies]
io-uring = "0.5"
[dev-dependencies]
once_cell = "1.8"