Skip to content
This repository was archived by the owner on Feb 4, 2026. It is now read-only.

Commit 8e2a944

Browse files
authored
build: Pin transitive dependencies for tlsn alpha.12 (#115)
1 parent e6b7db5 commit 8e2a944

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed

demo/interactive-demo/prover-rs/Cargo.toml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,31 @@ async-tungstenite = { version = "0.25", features = ["tokio-runtime"] }
88
futures = "0.3"
99
http = "1.1"
1010
http-body-util = "0.1"
11-
hyper = {version = "1.1", features = ["client", "http1"]}
12-
hyper-util = {version = "0.1", features = ["full"]}
11+
hyper = { version = "1.1", features = ["client", "http1"] }
12+
hyper-util = { version = "0.1", features = ["full"] }
1313
regex = "1.10.3"
14-
tokio = {version = "1", features = [
14+
tokio = { version = "1", features = [
1515
"rt",
1616
"rt-multi-thread",
1717
"macros",
1818
"net",
1919
"io-std",
2020
"fs",
21-
]}
21+
] }
2222
tokio-util = { version = "0.7", features = ["compat"] }
2323
tracing = "0.1.40"
24-
tracing-subscriber = { version ="0.3.18", features = ["env-filter"] }
24+
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
2525
uuid = { version = "1.4.1", features = ["v4", "fast-rng"] }
2626
ws_stream_tungstenite = { version = "0.13", features = ["tokio_io"] }
2727

2828
tlsn-core = { git = "https://github.com/tlsnotary/tlsn.git", tag = "v0.1.0-alpha.12", package = "tlsn-core" }
2929
tlsn-prover = { git = "https://github.com/tlsnotary/tlsn.git", tag = "v0.1.0-alpha.12", package = "tlsn-prover" }
3030
tlsn-common = { git = "https://github.com/tlsnotary/tlsn.git", tag = "v0.1.0-alpha.12", package = "tlsn-common" }
31-
spansy = {git = "https://github.com/tlsnotary/tlsn-utils", package = "spansy", branch = "dev"}
31+
spansy = { git = "https://github.com/tlsnotary/tlsn-utils", package = "spansy", branch = "dev" }
3232
rangeset = "0.2.0"
33+
34+
# --- Transitive dependency pins (for TLSNotary alpha.12)---
35+
aes = "=0.9.0-rc.0"
36+
cipher = "=0.5.0-rc.0"
37+
crypto-common = "=0.2.0-rc.3"
38+
inout = "=0.2.0-rc.5"

demo/interactive-demo/verifier-rs/Cargo.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,28 @@ hyper = { version = "1.1", features = ["client", "http1", "server"] }
1717
hyper-util = { version = "0.1", features = ["full"] }
1818
serde = { version = "1.0.147", features = ["derive"] }
1919
sha1 = "0.10"
20-
tokio = {version = "1", features = [
20+
tokio = { version = "1", features = [
2121
"rt",
2222
"rt-multi-thread",
2323
"macros",
2424
"net",
2525
"io-std",
2626
"fs",
27-
]}
27+
] }
2828
tokio-util = { version = "0.7", features = ["compat"] }
2929
tower = { version = "0.4.12", features = ["make"] }
3030
tower-service = { version = "0.3" }
3131
tracing = "0.1.40"
32-
tracing-subscriber = { version ="0.3.18", features = ["env-filter"] }
32+
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
3333
ws_stream_tungstenite = { version = "0.13", features = ["tokio_io"] }
3434

3535
tlsn-core = { git = "https://github.com/tlsnotary/tlsn.git", tag = "v0.1.0-alpha.12", package = "tlsn-core" }
3636
tlsn-verifier = { git = "https://github.com/tlsnotary/tlsn.git", tag = "v0.1.0-alpha.12", package = "tlsn-verifier" }
3737
tlsn-common = { git = "https://github.com/tlsnotary/tlsn.git", tag = "v0.1.0-alpha.12", package = "tlsn-common" }
3838
tower-util = "0.3.1"
39+
40+
# --- Transitive dependency pins (for TLSNotary alpha.12)---
41+
aes = "=0.9.0-rc.0"
42+
cipher = "=0.5.0-rc.0"
43+
crypto-common = "=0.2.0-rc.3"
44+
inout = "=0.2.0-rc.5"

0 commit comments

Comments
 (0)