mirror of
https://github.com/tlsnotary/tlsn.git
synced 2026-01-09 06:38:15 -05:00
60 lines
1.5 KiB
TOML
60 lines
1.5 KiB
TOML
[package]
|
|
name = "tlsn-tls-client"
|
|
authors = ["TLSNotary Team"]
|
|
description = "A TLS client for TLSNotary"
|
|
keywords = ["tls", "mpc", "2pc", "client", "sync"]
|
|
categories = ["cryptography"]
|
|
license = "Apache-2.0 OR ISC OR MIT"
|
|
version = "0.1.0-alpha.13"
|
|
edition = "2021"
|
|
autobenches = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
name = "tls_client"
|
|
|
|
[dependencies]
|
|
tlsn-tls-backend = { workspace = true }
|
|
tlsn-tls-core = { workspace = true }
|
|
|
|
async-trait = { workspace = true }
|
|
log = { workspace = true, optional = true }
|
|
ring = { workspace = true }
|
|
sct = { workspace = true }
|
|
rustls-pki-types = { workspace = true }
|
|
rustls-webpki = { workspace = true }
|
|
aes-gcm = { workspace = true }
|
|
p256 = { workspace = true, features = ["ecdh"] }
|
|
rand = { workspace = true }
|
|
rand06-compat = { workspace = true }
|
|
hmac = { workspace = true }
|
|
sha2 = { workspace = true, features = ["compress"] }
|
|
digest = { workspace = true }
|
|
futures = { workspace = true }
|
|
web-time = { workspace = true }
|
|
|
|
[features]
|
|
default = ["logging", "tls12"]
|
|
logging = ["log"]
|
|
tls12 = []
|
|
|
|
[dev-dependencies]
|
|
env_logger = { workspace = true }
|
|
webpki-roots = { workspace = true }
|
|
rustls-pemfile = { workspace = true }
|
|
rustls = { version = "0.20", features = ["tls12"] }
|
|
tokio = { workspace = true, features = ["rt", "macros"] }
|
|
|
|
[[example]]
|
|
name = "bench"
|
|
path = "examples/internal/bench.rs"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
ring = { version = "0.17", features = ["wasm32_unknown_unknown_js"] }
|