2022-10-27 22:44:54 -04:00
|
|
|
[package]
|
2022-10-28 13:57:48 -04:00
|
|
|
name = "lox_test"
|
2022-10-27 22:44:54 -04:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-11-14 14:30:38 -05:00
|
|
|
lox = { git = "https://git-crysp.uwaterloo.ca/iang/lox.git", branch = "vvecna/lox_test" }
|
2022-11-18 10:52:33 -05:00
|
|
|
ed25519-dalek = { version = "1", features = ["serde"] }
|
2022-11-14 14:30:38 -05:00
|
|
|
serde = "1"
|
2023-02-05 21:26:13 -05:00
|
|
|
bincode = "1"
|
2022-11-14 14:30:38 -05:00
|
|
|
serde_json = "1.0"
|
2023-01-14 13:57:38 -05:00
|
|
|
# TODO: reduce feature set to just the ones needed
|
|
|
|
tokio = { version = "1.20", features = ["full"] }
|