1234567891011121314151617181920212223242526 |
- [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" }
- btconfig = { path = "../btconfig" }
- 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" }
- anyhow = { version = "1.0.66", features = ["std", "backtrace"] }
- serde = { version = "^1.0.136", features = ["derive"] }
- config = "0.13.3"
- [dev-dependencies]
- swtpm-harness = { path = "../swtpm-harness" }
- btserde = { path = "../btserde" }
- tempdir = "0.3.7"
- ctor = { version = "0.1.22" }
- libc = { version = "0.2.137" }
|