зеркало из https://github.com/mozilla/gecko-dev.git
63 строки
1.5 KiB
TOML
63 строки
1.5 KiB
TOML
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
|
#
|
|
# When uploading crates to the registry Cargo will automatically
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
|
# to registry (e.g., crates.io) dependencies
|
|
#
|
|
# If you believe there's an error in this file please file an
|
|
# issue against the rust-lang/cargo repository. If you're
|
|
# editing this file be aware that the upstream Cargo.toml
|
|
# will likely look very different (and much more reasonable)
|
|
|
|
[package]
|
|
edition = "2018"
|
|
name = "ece"
|
|
version = "1.3.0"
|
|
authors = ["Edouard Oger <eoger@fastmail.com>", "JR Conlin <jrconlin@gmail.com>"]
|
|
description = "Encrypted Content-Encoding for HTTP Rust implementation."
|
|
keywords = ["http-ece", "web-push"]
|
|
license = "MPL-2.0"
|
|
repository = "https://github.com/mozilla/rust-ece"
|
|
[package.metadata.release]
|
|
no-dev-version = true
|
|
[dependencies.base64]
|
|
version = "0.12"
|
|
|
|
[dependencies.byteorder]
|
|
version = "1.3"
|
|
|
|
[dependencies.hkdf]
|
|
version = "0.9"
|
|
optional = true
|
|
|
|
[dependencies.lazy_static]
|
|
version = "1.4"
|
|
optional = true
|
|
|
|
[dependencies.once_cell]
|
|
version = "1.4"
|
|
|
|
[dependencies.openssl]
|
|
version = "0.10"
|
|
optional = true
|
|
|
|
[dependencies.serde]
|
|
version = "1.0"
|
|
features = ["derive"]
|
|
optional = true
|
|
|
|
[dependencies.sha2]
|
|
version = "0.9"
|
|
optional = true
|
|
|
|
[dependencies.thiserror]
|
|
version = "1.0"
|
|
[dev-dependencies.hex]
|
|
version = "0.4"
|
|
|
|
[features]
|
|
backend-openssl = ["openssl", "lazy_static", "hkdf", "sha2"]
|
|
default = ["backend-openssl", "serializable-keys"]
|
|
serializable-keys = ["serde"]
|