Cargo.toml 920 B

12345678910111213141516171819202122232425262728293031
  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. btconfig = { path = "../btconfig" }
  14. tokio = { version = "1.24.2", features = ["rt", "rt-multi-thread"] }
  15. fuse-backend-rs = { version = "0.9.6", features = ["async-io"] }
  16. log = "0.4.17"
  17. env_logger = "0.9.0"
  18. anyhow = { version = "1.0.66", features = ["std", "backtrace"] }
  19. libc = { version = "0.2.137" }
  20. serde_json = "1.0.92"
  21. futures = "0.3.25"
  22. serde = { version = "^1.0.136", features = ["derive"] }
  23. config = "0.13.3"
  24. [dev-dependencies]
  25. btfproto-tests = { path = "../btfproto-tests" }
  26. tempdir = "0.3.7"
  27. libc = "0.2.137"
  28. ctor = { version = "0.1.22" }