Skip to content

Commit

Permalink
fix non-std build
Browse files Browse the repository at this point in the history
  • Loading branch information
kkohbrok committed Sep 7, 2023
1 parent d8bd0b5 commit b804dfd
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tls_codec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,14 @@ default = ["std"]
arbitrary = ["std", "dep:arbitrary"]
derive = ["tls_codec_derive"]
serde = ["std", "dep:serde"]
mls = [] # In MLS variable length vectors are limited compared to QUIC.
mls = [] # In MLS variable length vectors are limited compared to QUIC.
std = ["tls_codec_derive?/std"]
verifiable_structs = ["std", "derive", "tls_codec_derive/verifiable_structs"]
verifiable_structs = [
"std",
"derive",
"tls_codec_derive/verifiable_structs",
"tls_codec_derive/std",
]

[[bench]]
name = "tls_vec"
Expand Down

0 comments on commit b804dfd

Please sign in to comment.