mirror of
https://github.com/tlsnotary/tlsn.git
synced 2026-01-08 21:08:04 -05:00
* refactor: modularize server-fixture * Update crates/server-fixture/server/Cargo.toml add newline Co-authored-by: sinu.eth <65924192+sinui0@users.noreply.github.com> * test: add browser benches * fix deps * ci: run ci workflow for all pull requests (#571) * misc fixes * fix clippy * don't log a non-critical error to stderr * use incognito (mitigates random hangs) * add notes * distinguish prover kind when plotting --------- Co-authored-by: sinu.eth <65924192+sinui0@users.noreply.github.com> Co-authored-by: Hendrik Eeckhaut <hendrik@eeckhaut.org> Co-authored-by: Ubuntu <ubuntu@ip-10-35-1-164.eu-central-1.compute.internal>
47 lines
1.1 KiB
TOML
47 lines
1.1 KiB
TOML
[package]
|
|
edition = "2021"
|
|
name = "tlsn-benches"
|
|
publish = false
|
|
version = "0.1.0"
|
|
|
|
[features]
|
|
default = []
|
|
browser-bench = ["tlsn-benches-browser-native"]
|
|
|
|
[dependencies]
|
|
tlsn-benches-library = { workspace = true }
|
|
tlsn-benches-browser-native = { workspace = true, optional = true}
|
|
tlsn-common = { workspace = true }
|
|
tlsn-core = { workspace = true }
|
|
tlsn-prover = { workspace = true }
|
|
tlsn-server-fixture = { workspace = true }
|
|
tlsn-server-fixture-certs = { workspace = true }
|
|
tlsn-tls-core = { workspace = true }
|
|
tlsn-verifier = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
charming = {version = "0.3.1", features = ["ssr"]}
|
|
csv = "1.3.0"
|
|
env_logger = { version = "0.6.0", default-features = false }
|
|
serde = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros", "net", "io-std"]}
|
|
tokio-util = { workspace = true }
|
|
toml = "0.8.11"
|
|
tracing-subscriber = {workspace = true, features = ["env-filter"]}
|
|
|
|
[[bin]]
|
|
name = "bench"
|
|
path = "bin/bench.rs"
|
|
|
|
[[bin]]
|
|
name = "prover"
|
|
path = "bin/prover.rs"
|
|
|
|
[[bin]]
|
|
name = "verifier"
|
|
path = "bin/verifier.rs"
|
|
|
|
[[bin]]
|
|
name = "plot"
|
|
path = "bin/plot.rs" |