-
Notifications
You must be signed in to change notification settings - Fork 580
/
Copy pathCargo.toml
40 lines (37 loc) · 812 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
34
35
36
37
38
39
40
[package]
name = "toydb"
description = "A distributed SQL database"
version = "0.1.0"
authors = ["Erik Grinaker <erik@grinaker.org>"]
edition = "2021"
default-run = "toydb"
[lib]
doctest = false
[dependencies]
bincode = "1.3"
clap = { version = "4.5", features = ["cargo", "derive"] }
config = "0.15"
crossbeam = { version = "0.8", features = ["crossbeam-channel"] }
dyn-clone = "1.0"
fs4 = "0.12"
hdrhistogram = "7.5"
itertools = "0.14"
log = "0.4"
petname = "2.0"
rand = "0.8"
regex = "1.10"
rustyline = "15.0"
rustyline-derive = "0.11"
serde = "1.0"
serde_bytes = "0.11"
simplelog = "0.12"
uuid = { version = "1.8", features = ["serde", "v4"] }
[dev-dependencies]
escargot = "0.5"
goldenscript = "0.7"
hex = "0.4"
paste = "1.0"
serde_json = "1.0"
tempfile = "3.10"
test-case = "3.3"
test_each_file = "0.3"