-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (22 loc) · 1.17 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
[package]
name = "etcd"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
omnipaxos_core = { git = "https://github.com/JonathanArns/omnipaxos", branch = "id2203-project-compat" }
omnipaxos_storage = { git = "https://github.com/JonathanArns/omnipaxos", features = ["sled"], branch = "id2203-project-compat" }
# use these dependencies instead of the above to demonstrate the bug in snapshot log synchronization
# omnipaxos_core = { git = "https://github.com/JonathanArns/omnipaxos", branch = "unfixed" }
# omnipaxos_storage = { git = "https://github.com/JonathanArns/omnipaxos", features = ["sled"], branch = "unfixed" }
axum = "0.6" # our web framework
tokio = { version = "1", features = ["full"] } # async runtime, needed for axum
hyper = { version = "0.14", features = ["full"] } # low-level http stack
reqwest = { version = "0.11", features = ["json"] } # high-level http client
serde = { version = "1", features = ["derive"] } # serialization ...
serde_json = "1" # ... to json
lazy_static = "1.4" # useful for config via environment
[features]
default = []
crash_recovery = []
pl = []