Skip to content

Commit

Permalink
Make rkyv feature default to size_32
Browse files Browse the repository at this point in the history
  • Loading branch information
pitdicker committed Jan 24, 2024
1 parent 0c692b3 commit f0cf98c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Cargo.toml
Expand Up @@ -29,10 +29,11 @@ oldtime = []
wasmbind = ["wasm-bindgen", "js-sys"]
unstable-locales = ["pure-rust-locales"]
# Note that rkyv-16, rkyv-32, and rkyv-64 are mutually exclusive.
rkyv-16 = ["rkyv", "rkyv?/size_16"]
rkyv-32 = ["rkyv", "rkyv?/size_32"]
rkyv-64 = ["rkyv", "rkyv?/size_64"]
rkyv-validation = ["rkyv", "rkyv?/validation"]
rkyv = ["dep:rkyv", "rkyv/size_32"]
rkyv-16 = ["dep:rkyv", "rkyv?/size_16"]
rkyv-32 = ["dep:rkyv", "rkyv?/size_32"]
rkyv-64 = ["dep:rkyv", "rkyv?/size_64"]
rkyv-validation = ["dep:rkyv", "rkyv?/validation"]
# Features for internal use only:
__internal_bench = []

Expand Down

0 comments on commit f0cf98c

Please sign in to comment.