12345678910111213141516171819202122 |
- [package]
- name = "btfsd"
- 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" }
- btmsg = { path = "../btmsg" }
- btfproto = { path = "../btfproto" }
- tokio = { version = "1.24.2", features = ["rt", "rt-multi-thread", "time"] }
- log = "0.4.17"
- env_logger = "0.9.0"
- btlib-tests = { path = "../btlib-tests" }
- [dev-dependencies]
- swtpm-harness = { path = "../swtpm-harness" }
- btserde = { path = "../btserde" }
- tempdir = "0.3.7"
- ctor = { version = "0.1.22" }
- libc = { version = "0.2.137" }
|