Cargo.toml 620 B

12345678910111213141516171819
  1. [package]
  2. name = "lox_test"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. #lox = { git = "https://git-crysp.uwaterloo.ca/iang/lox.git", branch = "vvecna/lox_test" }
  8. lox = { git = "https://gitlab.torproject.org/onyinyang/lox.git" }
  9. ed25519-dalek = { version = "1", features = ["serde"] }
  10. serde = "1"
  11. bincode = "1"
  12. serde_json = "1.0"
  13. serde_with = "1.9.1"
  14. time = "0.2"
  15. # TODO: reduce feature set to just the ones needed
  16. tokio = { version = "1.20", features = ["full"] }
  17. hyper = { version = "0.14", features = ["full"] }