rustls/rustls/Cargo.toml

54 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "rustls"
2020-02-22 20:38:48 +00:00
version = "0.17.0"
edition = "2018"
authors = ["Joseph Birr-Pixton <jpixton@gmail.com>"]
license = "Apache-2.0/ISC/MIT"
2020-02-22 20:38:48 +00:00
readme = "../README.md"
description = "Rustls is a modern TLS library written in Rust."
homepage = "https://github.com/ctz/rustls"
repository = "https://github.com/ctz/rustls"
categories = ["network-programming", "cryptography"]
autobenches = false
[dependencies]
base64 = "=0.12.1"
log = { version = "0.4.4", optional = true }
2020-02-22 19:59:14 +00:00
ring = "0.16.11"
sct = "0.6.0"
webpki = "0.21.0"
[features]
default = ["logging"]
logging = ["log"]
dangerous_configuration = []
quic = []
[dev-dependencies]
env_logger = "0.7.1"
log = "0.4.4"
webpki-roots = "0.19.0"
criterion = "0.3.0"
[[example]]
name = "bogo_shim"
path = "examples/internal/bogo_shim.rs"
required-features = ["dangerous_configuration", "quic"]
[[example]]
name = "trytls_shim"
path = "examples/internal/trytls_shim.rs"
[[example]]
name = "bench"
path = "examples/internal/bench.rs"
[[bench]]
name = "benchmarks"
path = "tests/benchmarks.rs"
harness = false
[package.metadata.docs.rs]
all-features = true
2020-02-22 19:59:14 +00:00
rustdoc-args = ["--cfg", "docsrs"]