Cargo.toml 810 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "btfuse"
  3. version = "0.1.0"
  4. edition = "2021"
  5. build = "build.rs"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. btlib = { path = "../btlib" }
  9. btserde = { path = "../btserde" }
  10. swtpm-harness = { path = "../swtpm-harness" }
  11. btfproto = { path = "../btfproto" }
  12. btmsg = { path = "../btmsg" }
  13. tokio = { version = "1.24.2", features = ["rt", "rt-multi-thread"] }
  14. fuse-backend-rs = { version = "0.9.6", features = ["async-io"] }
  15. log = "0.4.17"
  16. env_logger = "0.9.0"
  17. anyhow = { version = "1.0.66", features = ["std", "backtrace"] }
  18. libc = { version = "0.2.137" }
  19. serde_json = "1.0.92"
  20. futures = "0.3.25"
  21. [dev-dependencies]
  22. btfproto-tests = { path = "../btfproto-tests" }
  23. tempdir = "0.3.7"
  24. libc = "0.2.137"
  25. ctor = { version = "0.1.22" }