123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- [package]
- name = "btlib"
- version = "0.1.0"
- authors = ["Matthew Carr <mdcarr941@gmail.com>"]
- edition = "2021"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [features]
- # This feature allows test only code to be used in other crates. See the comment below for more
- # information.
- testing=[
- "dep:tempdir",
- "dep:ctor",
- "dep:nix",
- "dep:env_logger",
- "dep:lazy_static",
- "dep:dbus",
- "dep:vm-memory"
- ]
- [dependencies]
- btserde = { path = "../btserde" }
- harness = { path = "../harness" }
- serde = { version = "^1.0.136", features = ["derive"] }
- serde-big-array = { version = "^0.4.1" }
- openssl = { version = "^0.10.38", features = ["vendored"] }
- base64-url = { version = "^1.4.13" }
- strum = { version = "^0.24.0", features = ["derive"] }
- strum_macros = { version = "^0.24.0" }
- log = "0.4.17"
- tss-esapi = { version = "7.1.0", features = ["generate-bindings"] }
- tss-esapi-sys = "0.3.0"
- foreign-types = "0.3.1"
- zeroize = { version = "1.5.7", features = ["zeroize_derive"] }
- static_assertions = "1.1.0"
- brotli = "3.3.4"
- os_pipe = { version = "1.1.1", features = ["io_safety"] }
- zerocopy = "0.6.1"
- fuse-backend-rs = "0.9.6"
- # These are dev-dependencies. They are declared this way so test_helpers can be used in other
- # crates. The build.rs script also supports this by turning on "cfg(test)" when
- # the testing feature is enabled. This is a hack and should be removed once this issue is resolved:
- # https://github.com/rust-lang/cargo/issues/8379
- tempdir = { version = "0.3.7", optional = true }
- ctor = { version = "0.1.22", optional = true }
- nix = { version = "0.25.0", optional = true }
- env_logger = { version = "0.9.0", optional = true }
- lazy_static = { version = "1.4.0", optional = true }
- dbus = { version = "0.9.6", optional = true }
- vm-memory = { version = "0.9.0", optional = true }
|