Dummy data instead of HTTP

This commit is contained in:
Pascal Engélibert 2026-02-06 15:05:41 +01:00
commit dec39cf2e3
10 changed files with 1543 additions and 1413 deletions

View file

@ -5,17 +5,39 @@ edition = "2024"
[dependencies]
argp = "0.4.0"
aws-lc-rs = "1.14.1"
#console-subscriber = "0.5.0"
env_logger = "0.11.8"
futures-util = "0.3.31"
memchr = "2.7.6"
regex = "1.12.2"
rustls-post-quantum = { version = "0.2.4", features = ["aws-lc-rs-unstable"] }
sslrelay = { path = "../sslrelay" }
log = "0.4.28"
sslrelay = { path = "../sslrelay", optional = true }
static_cell = "2.1.1"
tlsh = { package = "fast-tlsh", version = "0.1.10", features = ["easy-functions"] }
tokio = { version = "1.48.0", features = ["io-util", "macros", "net", "rt", "rt-multi-thread", "sync", "time"]}
tokio-rustls = "0.26.4"
tokio-util = { version = "0.7.6", features = ["codec"] }
x509-parser = "0.18.0"
# TLS impls
aws-lc-rs = { version = "1.14.1", optional = true }
boring-rustls-provider = { git = "https://github.com/janrueth/boring-rustls-provider.git", rev = "490340afa77e2c08fc45853124f99d49f4f9f8a0", optional = true }
rustls-graviola = { version = "0.3.2", optional = true }
rustls-openssl = { version = "0.3.0", default-features = false, features = ["tls12"], optional = true }
rustls-post-quantum = { version = "0.2.4", optional = true }
rustls-symcrypt = { version = "0.2.1", optional = true, features = ["chacha", "x25519"] }
[features]
default = [
"aws-lc",
"record",
]
record = ["sslrelay"]
aws-lc = ["tokio-rustls/aws-lc-rs", "rustls-post-quantum", "rustls-post-quantum/aws-lc-rs-unstable", "aws-lc-rs"]
boring = ["boring-rustls-provider"]
graviola = ["rustls-graviola"]
openssl = ["rustls-openssl"]
ring = ["tokio-rustls/ring"]
symcrypt = ["rustls-symcrypt"]
[profile.release]
#lto = "fat"