зеркало из https://github.com/mozilla/rust-ece.git
29 строки
847 B
TOML
29 строки
847 B
TOML
[package]
|
|
name = "ece"
|
|
version = "1.2.0"
|
|
authors = ["Edouard Oger <eoger@fastmail.com>", "JR Conlin <jrconlin@gmail.com>"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
repository = "https://github.com/mozilla/rust-ece"
|
|
description = "Encrypted Content-Encoding for HTTP Rust implementation."
|
|
keywords = ["http-ece", "web-push"]
|
|
|
|
[dependencies]
|
|
byteorder = "1.3"
|
|
thiserror = "1.0"
|
|
base64 = "0.12"
|
|
hkdf = { version = "0.8", optional = true }
|
|
lazy_static = { version = "1.4", optional = true }
|
|
once_cell = "1.4"
|
|
openssl = { version = "0.10", optional = true }
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
sha2 = { version = "0.8", optional = true }
|
|
|
|
[dev-dependencies]
|
|
hex = "0.4"
|
|
|
|
[features]
|
|
default = ["backend-openssl", "serializable-keys"]
|
|
serializable-keys = ["serde"]
|
|
backend-openssl = ["openssl", "lazy_static", "hkdf", "sha2"]
|