blob: 2db38ee3d1999c40a8a4a5c6f54ade16974bd0c2 [file] [log] [blame]
[package]
name = "rustls"
version = "0.13.0"
authors = ["Joseph Birr-Pixton <jpixton@gmail.com>"]
license = "Apache-2.0/ISC/MIT"
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"]
[target.'cfg(not(target_env = "sgx"))'.dependencies]
sgx_tstd = { path = "../../sgx_tstd" }
[dependencies]
untrusted = "0.6.2"
base64 = { path = "../rust-base64" }
log = { path = "../log", optional = true }
ring = { path = "../ring", version = "0.13.2", features = ["rsa_signing"] }
webpki = { path = "../webpki", version = "0.18.1" }
sct = { path = "../sct" }
[features]
default = ["logging"]
logging = ["log"]
dangerous_configuration = []
quic = []
[dev-dependencies]
log = { path = "../log" }
env_logger = "0.5"
mio = "0.6"
docopt = "1.0"
serde = "1.0"
serde_derive = "1.0"
regex = "1.0"
vecio = "0.1"
[[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"
[[example]]
name = "tlsclient"
path = "examples/tlsclient.rs"
[[example]]
name = "tlsserver"
path = "examples/tlsserver.rs"
[[example]]
name = "simpleclient"
path = "examples/simpleclient.rs"