-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (38 loc) · 1016 Bytes
/
Copy pathCargo.toml
File metadata and controls
48 lines (38 loc) · 1016 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "simpledb-rs"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "client"
path = "src/client.rs"
[[bin]]
name = "server"
path = "src/server.rs"
[[bin]]
name = "create_student_db"
path = "src/create_student_db.rs"
[build-dependencies]
lalrpop = "0.22.0"
tonic-build = { version = "0.12.3", features = ["prost"] }
[dependencies]
anyhow = "1.0.91"
enum_dispatch = "0.3.13"
lalrpop-util = { version = "0.21.0", features = ["lexer", "unicode"] }
log = "0.4.22"
prost = "0.13"
tempfile = "3"
thiserror = "1.0.65"
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"] }
tonic = "0.12.3"
rustyline = "16.0.0"
colored = "3.0.0"
clap = { version = "4.5.4", features = ["derive"] }
[dev-dependencies]
serial_test = "2.0.0"
[dependencies.uuid]
version = "1.11.0"
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
]