mirror of
https://github.com/tlsnotary/tlsn.git
synced 2026-01-10 07:07:57 -05:00
* Add comments. * Remove commented leftover. * Remove example tweak. * fmt. --------- Co-authored-by: yuroitaki <>
58 lines
1.4 KiB
TOML
58 lines
1.4 KiB
TOML
[package]
|
|
edition = "2021"
|
|
name = "tlsn-examples"
|
|
publish = false
|
|
version = "0.0.0"
|
|
|
|
[dependencies]
|
|
notary-client = { workspace = true }
|
|
tlsn-common = { workspace = true }
|
|
tlsn-core = { workspace = true }
|
|
tlsn-prover = { workspace = true }
|
|
tlsn-verifier = { workspace = true }
|
|
tlsn-formats = { workspace = true }
|
|
tlsn-tls-core = { workspace = true }
|
|
tls-server-fixture = { workspace = true }
|
|
tlsn-server-fixture = { workspace = true }
|
|
tlsn-server-fixture-certs = { workspace = true }
|
|
spansy = { workspace = true }
|
|
|
|
bincode = { workspace = true }
|
|
chrono = { workspace = true }
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
dotenv = { version = "0.15.0" }
|
|
futures = { workspace = true }
|
|
http-body-util = { workspace = true }
|
|
hex = { workspace = true }
|
|
hyper = { workspace = true, features = ["client", "http1"] }
|
|
hyper-util = { workspace = true, features = ["full"] }
|
|
k256 = { workspace = true, features = ["ecdsa"] }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = [
|
|
"rt",
|
|
"rt-multi-thread",
|
|
"macros",
|
|
"net",
|
|
"io-std",
|
|
"fs",
|
|
] }
|
|
tokio-util = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
[[example]]
|
|
name = "attestation_prove"
|
|
path = "attestation/prove.rs"
|
|
|
|
[[example]]
|
|
name = "attestation_present"
|
|
path = "attestation/present.rs"
|
|
|
|
[[example]]
|
|
name = "attestation_verify"
|
|
path = "attestation/verify.rs"
|
|
|
|
[[example]]
|
|
name = "interactive"
|
|
path = "interactive/interactive.rs"
|