File: Cargo.toml

package info (click to toggle)
aws-crt-python 0.28.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 78,428 kB
  • sloc: ansic: 437,955; python: 27,657; makefile: 5,855; sh: 4,289; ruby: 208; java: 82; perl: 73; cpp: 25; xml: 11
file content (34 lines) | stat: -rw-r--r-- 679 bytes parent folder | download
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
[package]
name = "benchmarks"
version = "0.1.0"
edition = "2021"

[dependencies]
tls-harness = { path = "../tls-harness" }
s2n-tls = { path = "../../extended/s2n-tls" }
strum = { version = "0.27", features = ["derive"] }
rustls = "0.23.31"
openssl = { version = "0.10.73", features = ["vendored"] }

[dev-dependencies]
criterion = "0.7"
# env_logger and log are used to enable logging for rustls, which can help with
# debugging interop failures
env_logger = "0.11.8"
log = "0.4.27"

[[bench]]
name = "handshake"
harness = false

[[bench]]
name = "throughput"
harness = false

[[bench]]
name = "resumption"
harness = false

[[bench]]
name = "connection_creation"
harness = false