Bug 1915045 Ensure decode tasks are scheduled on BufferingState::Enter() r=media...
[gecko.git] / security / manager / ssl / osclientcerts / Cargo.toml
blob6cc8088a118287642f7bb18e090cc194a1f3f246
1 [package]
2 name = "osclientcerts-static"
3 version = "0.1.4"
4 authors = ["Dana Keeler <dkeeler@mozilla.com>"]
5 edition = "2018"
6 description = "Platform-specific support for client authentication certificates in Firefox"
7 repository = "https://github.com/mozkeeler/osclientcerts"
8 license = "MPL-2.0"
10 [dependencies]
11 byteorder = "1.3"
12 env_logger = {version = "0.10", default-features = false } # disable `regex` to reduce code size
13 lazy_static = "1"
14 log = "0.4"
15 mozilla-central-workspace-hack = { version = "0.1", features = ["osclientcerts-static"], optional = true }
17 pkcs11-bindings = "0.1"
18 rsclientcerts = { path = "../rsclientcerts" }
19 sha2 = "0.10.2"
21 [target."cfg(any(target_os = \"macos\", target_os = \"ios\"))".dependencies.core-foundation]
22 version = "0.9"
24 [target."cfg(any(target_os = \"macos\", target_os = \"ios\"))".dependencies.libloading]
25 version = "0.8"
27 [target."cfg(target_os = \"windows\")".dependencies.winapi]
28 version = "0.3"
29 features = ["errhandlingapi", "wincrypt"]
31 [lib]
32 crate-type = ["staticlib"]