Cargo.toml 474 B

123456789101112131415161718
  1. [package]
  2. name = "btfproto-tests"
  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. btlib = { path = "../btlib" }
  8. btfproto = { path = "../btfproto" }
  9. btserde = { path = "../btserde" }
  10. tempdir = { version = "0.3.7" }
  11. lazy_static = { version = "1.4.0" }
  12. libc = { version = "0.2.137" }
  13. tokio = { version = "1.24.2" }
  14. [dev-dependencies]
  15. btlib-tests = { path = "../btlib-tests" }