- rust-version 1.85 -> 1.88 (ecosystem-wide resolution from the audit sessions; matches noq 1.2's floor, sits below iroh 1.91) - Cargo.lock: time 0.3.36 pin removed (existed only to keep the 1.85 claim satisfiable); tree re-floated to current - phase-0: MSRV thread marked RESOLVED; OQ-TLS-08 narrowed to the quinn->noq feature-rename half; lesson recorded (rust-version is passive metadata — claims must be compile-checked, not assumed) Verified: cargo test, test --all-features, clippy -D warnings, fmt --check, rustup run 1.88 cargo check
43 lines
1.4 KiB
TOML
43 lines
1.4 KiB
TOML
[package]
|
|
name = "alktls"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.88"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Shared TLS setup types: server and client rustls configs, cert resolvers, verifiers, and ACME state-machine wiring, transport-agnostic and shareable across transports."
|
|
repository = "https://git.alk.dev/alkdev/alktls"
|
|
keywords = ["tls", "rustls", "acme", "quinn", "network"]
|
|
categories = ["network-programming", "cryptography", "asynchronous"]
|
|
exclude = [".opencode/", "AGENTS.md", "docs/reviews/", "docs/research/", "docs/plans/", "docs/sdd_process.md"]
|
|
|
|
[lib]
|
|
name = "alktls"
|
|
|
|
[features]
|
|
default = ["quinn"]
|
|
quinn = ["dep:quinn"]
|
|
tcp = ["dep:tokio-rustls"]
|
|
acme = ["dep:rustls-acme"]
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", default-features = false, features = ["rt", "sync", "macros"] }
|
|
rustls = { version = "0.23", features = ["aws_lc_rs"] }
|
|
rustls-pki-types = "1"
|
|
rustls-pemfile = "2"
|
|
rustls-native-certs = "0.8"
|
|
webpki-roots = "0.26"
|
|
rcgen = "0.13"
|
|
ed25519-dalek = "2"
|
|
sha2 = "0.10"
|
|
tracing = "0.1"
|
|
thiserror = "2"
|
|
|
|
futures = { version = "0.3", optional = true }
|
|
quinn = { version = "0.11", optional = true }
|
|
tokio-rustls = { version = "0.26", optional = true }
|
|
rustls-acme = { version = "0.12", optional = true, features = ["aws-lc-rs"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["full", "test-util", "macros"] }
|
|
tempfile = "3"
|
|
hex = "0.4" |