Cargo.toml 778 B

1234567891011121314151617181920212223242526
  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. tokio = { version = "1.24.2", features = ["rt", "rt-multi-thread", "time"] }
  12. log = "0.4.17"
  13. env_logger = "0.9.0"
  14. btlib-tests = { path = "../btlib-tests" }
  15. anyhow = { version = "1.0.66", features = ["std", "backtrace"] }
  16. serde = { version = "^1.0.136", features = ["derive"] }
  17. config = "0.13.3"
  18. [dev-dependencies]
  19. swtpm-harness = { path = "../swtpm-harness" }
  20. btserde = { path = "../btserde" }
  21. tempdir = "0.3.7"
  22. ctor = { version = "0.1.22" }
  23. libc = { version = "0.2.137" }