123456789101112131415161718192021222324252627 |
- [package]
- name = "btfuse"
- version = "0.1.0"
- edition = "2021"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- btlib = { path = "../btlib" }
- btserde = { path = "../btserde" }
- swtpm-harness = { path = "../swtpm-harness" }
- btfproto = { path = "../btfproto" }
- tokio = { version = "1.24.2", features = ["rt", "rt-multi-thread"] }
- fuse-backend-rs = { version = "0.9.6", features = ["async-io"] }
- log = "0.4.17"
- env_logger = "0.9.0"
- anyhow = { version = "1.0.66", features = ["std", "backtrace"] }
- libc = { version = "0.2.137" }
- bytes = { version = "1.3.0" }
- serde_json = "1.0.92"
- futures = "0.3.25"
- [dev-dependencies]
- btfproto-tests = { path = "../btfproto-tests" }
- tempdir = "0.3.7"
- libc = "0.2.137"
- ctor = { version = "0.1.22" }
|