-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 717 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "toyDB-cp"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bincode = "~1.3.3"
serde = "~1.0.126"
serde_derive = "~1.0.126"
regex = "1.5.4"
futures = "~0.3.15"
futures-util = "~0.3.15"
tokio = { version = "~1.6.2", features = ["macros", "rt", "rt-multi-thread", "net", "io-util", "time", "sync"] }
tokio-serde = { version = "~0.8", features = ["bincode"] }
tokio-stream = { version = "~0.1.6", features = ["net"]}
tokio-util = { version = "~0.6.7", features = ["codec"] }
log = "~0.4.14"
rand = "~0.8.3"
uuid = { version = "~0.8.2", features = ["v4"] }
[dev-dependencies]
pretty_assertions = "1.3.0"