File: Cargo.toml

package info (click to toggle)
rust-async-tls 0.13.0-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 316 kB
  • sloc: sh: 16; makefile: 2
file content (92 lines) | stat: -rw-r--r-- 1,968 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# 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 are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2018"
name = "async-tls"
version = "0.13.0"
authors = [
    "The async-rs developers",
    "Florian Gilcher <florian.gilcher@ferrous-systems.com>",
    "dignifiedquire <dignifiedquire@gmail.com>",
    "quininer kel <quininer@live.com>",
]
description = "Asynchronous TLS/SSL streams using Rustls."
homepage = "https://github.com/async-std/async-tls"
documentation = "https://docs.rs/async-tls"
readme = "README.md"
categories = [
    "asynchronous",
    "cryptography",
    "network-programming",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/async-std/async-tls"

[[test]]
name = "test"
required-features = [
    "client",
    "server",
]

[[test]]
name = "google"
required-features = ["client"]

[dependencies.futures-core]
version = "0.3.5"

[dependencies.futures-io]
version = "0.3.5"

[dependencies.rustls]
version = "0.21"

[dependencies.rustls-pemfile]
version = "1.0"

[dependencies.rustls-webpki]
version = "0.101.4"
optional = true

[dependencies.webpki-roots]
version = "0.22.3"
optional = true

[dev-dependencies.async-std]
version = "1.11"
features = ["unstable"]

[dev-dependencies.futures-executor]
version = "0.3.5"

[dev-dependencies.futures-util]
version = "0.3.5"
features = ["io"]

[dev-dependencies.lazy_static]
version = "1"

[features]
client = ["webpki-roots"]
default = [
    "client",
    "server",
]
early-data = []
server = []

[badges.appveyor]
repository = "async-std/async-tls"

[badges.travis-ci]
repository = "async-std/async-tls"