rustls/Cargo.toml

31 lines
725 B
TOML
Raw Normal View History

[package]
name = "rustls"
2017-02-03 19:41:53 +00:00
version = "0.5.5"
authors = ["Joseph Birr-Pixton <jpixton@gmail.com>"]
2016-06-21 00:23:15 +00:00
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"
2017-02-03 19:41:53 +00:00
catgories = ["network-programming", "cryptography"]
[dependencies]
untrusted = "0.3.1"
2016-05-21 11:43:01 +00:00
time = "0.1.35"
base64 = "~0.2.0"
log = { version = "0.3.6", optional = true }
ring = { version = "0.6.3", features = ["rsa_signing"] }
webpki = "0.9.2"
[features]
default = ["logging"]
logging = ["log"]
[dev-dependencies]
log = "0.3.6"
2016-06-03 01:28:28 +00:00
env_logger = "0.3.3"
mio = "0.5.1"
docopt = "0.6"
rustc-serialize = "0.3"
webpki-roots = "0.6.1"