Cargo.toml 791 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "btfuse"
  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. btserde = { path = "../btserde" }
  9. swtpm-harness = { path = "../swtpm-harness" }
  10. btfproto = { path = "../btfproto" }
  11. tokio = { version = "1.24.2", features = ["rt", "rt-multi-thread"] }
  12. fuse-backend-rs = { version = "0.9.6", features = ["async-io"] }
  13. log = "0.4.17"
  14. env_logger = "0.9.0"
  15. anyhow = { version = "1.0.66", features = ["std", "backtrace"] }
  16. libc = { version = "0.2.137" }
  17. bytes = { version = "1.3.0" }
  18. serde_json = "1.0.92"
  19. futures = "0.3.25"
  20. [dev-dependencies]
  21. btfproto-tests = { path = "../btfproto-tests" }
  22. tempdir = "0.3.7"
  23. libc = "0.2.137"
  24. ctor = { version = "0.1.22" }