update cargo.toml, remove cargo.lock

This commit is contained in:
Jacob Rothstein 2020-07-26 19:59:40 -07:00
parent 1c740ac026
commit 268757a424
No known key found for this signature in database
GPG Key ID: C38BA18C6CFE15A5
3 changed files with 14 additions and 1515 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
/target
**.pem
Cargo.lock

1509
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -3,11 +3,18 @@ name = "tide-rustls"
version = "0.1.0"
authors = ["Jacob Rothstein <hi@jbr.me>"]
edition = "2018"
description = "tide tls listener based on async-tls and rustls"
readme = "README.md"
repository = "https://github.com/jbr/tide-rustls"
documentation = "https://docs.rs/tide-rustls"
license = "MIT OR Apache-2.0"
keywords = ["tide", "https", "tls"]
categories = ["web-programming::http-server", "web-programming"]
[dependencies]
async-std = { version = "1.6", features = ["attributes"] }
tide = "0.12"
async-tls = "0.7"
rustls = "0.17"
async-h1 = "2.0"
async-dup = "1.1"
async-std = { version = "1.6.2", features = ["attributes"] }
tide = "0.12.0"
async-tls = "0.9.0"
rustls = "0.18.0"
async-h1 = "2.1.0"
async-dup = "1.2.1"