File: Cargo.toml

package info (click to toggle)
aws-crt-python 0.16.8%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 78,328 kB
  • sloc: ansic: 330,743; python: 18,949; makefile: 6,271; sh: 3,712; asm: 754; cpp: 699; ruby: 208; java: 77; perl: 73; javascript: 46; xml: 11
file content (25 lines) | stat: -rw-r--r-- 593 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
[package]
name = "s2n-tls"
description = "A C99 implementation of the TLS/SSL protocols"
version = "0.0.23"
authors = ["AWS s2n"]
edition = "2021"
repository = "https://github.com/aws/s2n-tls"
license = "Apache-2.0"

[features]
default = []
quic = ["s2n-tls-sys/quic"]
pq = ["s2n-tls-sys/pq"]
testing = ["bytes"]

[dependencies]
bytes = { version = "1", optional = true }
errno = { version = "0.2" }
libc = "0.2"
s2n-tls-sys = { version = "=0.0.23", path = "../s2n-tls-sys", features = ["internal"] }
pin-project-lite = "0.2"

[dev-dependencies]
bytes = { version = "1" }
futures-test = "0.3"