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
|
[workspace]
members = [
# Network-based tests
"connect-tests",
# tests and example code
"examples",
# Tests that require OpenSSL
"openssl-tests",
# the main library and tests
"rustls",
# common code for testing the core crate
"rustls-test",
# rustls cryptography provider for fuzzing
"rustls-fuzzing-provider",
]
## Deliberately not included in `members`:
exclude = [
# `cargo fuzz` integration (requires nightly)
"fuzz",
]
default-members = [
# ---
"examples",
"rustls",
]
resolver = "2"
[workspace.dependencies]
anyhow = "1.0.73"
asn1 = ">= 0.17.0, <= 0.22"
async-std = { version = "1.12.0", features = ["attributes"] }
async-trait = "0.1.74"
base64 = "0.22"
brotli = { version = ">= 6.0.0, <= 8", default-features = false, features = ["std"] }
brotli-decompressor = ">= 4.0.1, <= 5"
byteorder = "1.4.3"
chacha20poly1305 = { version = "0.10", default-features = false, features = ["alloc"] }
clap = { version = "4.3.21", features = ["derive", "env"] }
crabgrind = "=0.1.9" # compatible with valgrind package on GHA ubuntu-latest
criterion = "0.6"
der = "0.7"
ecdsa = "0.16.8"
env_logger = "0.11"
fxhash = "0.2.1"
hashbrown = { version = "0.14", default-features = false, features = ["ahash", "inline-more"] }
hex = "0.4"
hmac = "0.12"
hpke-rs = "0.3"
hpke-rs-crypto = "0.3"
hpke-rs-rust-crypto = "0.3"
itertools = ">= 0.13.0, <= 0.14"
log = { version = "0.4.8" }
mio = { version = "1", features = ["net", "os-poll"] }
num-bigint = "0.4.4"
once_cell = { version = "1.16", default-features = false, features = ["alloc", "race"] }
openssl = "0.10"
p256 = { version = "0.13.2", default-features = false, features = ["alloc", "ecdsa", "pkcs8"] }
pkcs8 = "0.10.2"
pki-types = { package = "rustls-pki-types", version = "1.12", features = ["alloc"] }
rand_core = { version = "0.6", features = ["getrandom"] }
rayon = "1.7"
rcgen = { version = ">= 0.13.2, <= 0.14", features = ["pem"] }
regex = "1"
ring = "0.17"
rsa = { version = "0.9", features = ["sha2"], default-features = false }
rustls-graviola = { version = "0.2" }
rustls-test = { path = "rustls-test/" }
rustls-fuzzing-provider = { path = "rustls-fuzzing-provider/" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = { version = "0.10", default-features = false }
signature = "2"
subtle = { version = "2.5.0", default-features = false }
time = { version = "0.3.6", default-features = false }
tikv-jemallocator = "0.6"
tokio = { version = "1.34", features = ["io-util", "macros", "net", "rt"] }
webpki = { package = "rustls-webpki", version = "0.103.4", features = ["alloc"], default-features = false }
rustls-native-certs = "0.6"
x25519-dalek = "2"
x509-parser = "0.17"
zeroize = "1.7"
# ensure all our tests are against the local copy, never
# against the latest _published_ copy.
[patch.crates-io]
rustls = { path = "rustls" }
|