Skip to content

Commit

Permalink
Recursively enable tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
th4s committed Aug 18, 2023
1 parent d740186 commit 4f82a5d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion components/aead/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ name = "aead"
[features]
default = ["mock"]
mock = []
tracing = ["dep:tracing"]
tracing = ["dep:tracing", "tlsn-block-cipher/tracing", "tlsn-stream-cipher/tracing", "tlsn-universal-hash/tracing"]

[dependencies]
tlsn-block-cipher = { path = "../cipher/block-cipher" }
Expand Down
2 changes: 1 addition & 1 deletion components/key-exchange/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ name = "key_exchange"

[features]
default = ["mock"]
tracing = ["dep:tracing"]
tracing = ["dep:tracing", "tlsn-point-addition/tracing"]
mock = []

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion components/prf/hmac-sha256/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ name = "hmac_sha256"

[features]
default = ["mock"]
tracing = ["dep:tracing"]
tracing = ["dep:tracing", "tlsn-hmac-sha256-circuits/tracing"]
mock = []

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion components/tls/tls-mpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2021"
name = "tls_mpc"

[features]
tracing = ["dep:tracing"]
tracing = ["dep:tracing", "tlsn-block-cipher/tracing", "tlsn-stream-cipher/tracing", "tlsn-universal-hash/tracing", "tlsn-aead/tracing", "tlsn-key-exchange/tracing", "tlsn-point-addition/tracing", "tlsn-hmac-sha256/tracing", "tlsn-tls-client-async/tracing", "uid-mux/tracing"]

[dependencies]
tlsn-tls-core = { path = "../tls-core", features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion tlsn/tlsn-notary/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version = "0.1.0"
edition = "2021"

[features]
tracing = ["dep:tracing"]
tracing = ["dep:tracing", "tlsn-tls-mpc/tracing"]

[dependencies]
tlsn-core.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion tlsn/tlsn-prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version = "0.1.0"
edition = "2021"

[features]
tracing = ["dep:tracing"]
tracing = ["dep:tracing", "tlsn-tls-client-async/tracing", "tlsn-core/tracing", "tlsn-tls-mpc/tracing", "uid-mux/tracing"]

[dependencies]
tlsn-tls-core.workspace = true
Expand Down

0 comments on commit 4f82a5d

Please sign in to comment.