-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
68 lines (58 loc) · 1.45 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "mini_redis"
version = "0.1.0"
edition.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
volo-gen = { path = "./volo-gen" }
lazy_static = "1"
tracing = "0.1"
shell-words = "1.1.0"
tracing-subscriber = "0.3"
colored = "2.0"
rustyline = "12.0.0"
rmp-serde = "1"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
tokio = { workspace = true, features = ["full"] }
volo.workspace = true
volo-thrift.workspace = true
pilota.workspace = true
anyhow.workspace = true
async-trait.workspace = true
parking_lot = "0.12.1"
async-std = "1.12.0"
clap = { version = "4.4.3", features = ["derive", "cargo"] }
chrono = "0.4.30"
nanoid = "0.4.0"
[profile.release]
opt-level = 3
debug = true
debug-assertions = false
overflow-checks = false
lto = true
panic = 'unwind'
incremental = false
codegen-units = 1
rpath = false
[workspace]
members = ["volo-gen"]
resolver = "2"
[workspace.package]
edition = "2021"
[workspace.dependencies]
# we recommend to use the latest framework version for new features and bug fixes
volo = "*"
volo-build = "*"
volo-thrift = "*"
pilota = "*"
anyhow = "1"
async-trait = "0.1"
tokio = "1"
[dependencies.uuid]
version = "1.4.1"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]