Cargo.toml 871 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "btfsd"
  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. btmsg = { path = "../btmsg" }
  9. btfproto = { path = "../btfproto" }
  10. btconfig = { path = "../btconfig" }
  11. btconsole = { path = "../btconsole" }
  12. tokio = { version = "1.24.2", features = ["rt", "rt-multi-thread", "time"] }
  13. log = "0.4.17"
  14. env_logger = "0.9.0"
  15. btlib-tests = { path = "../btlib-tests" }
  16. anyhow = { version = "1.0.66", features = ["std", "backtrace"] }
  17. serde = { version = "^1.0.136", features = ["derive"] }
  18. figment = "0.10.8"
  19. [dev-dependencies]
  20. swtpm-harness = { path = "../swtpm-harness" }
  21. btserde = { path = "../btserde" }
  22. tempdir = "0.3.7"
  23. ctor = { version = "0.1.22" }
  24. libc = { version = "0.2.137" }
  25. figment = { version = "0.10.8", features = ["test"] }