1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-03 18:24:05 +02:00

update schemars to 1.0

This commit is contained in:
Robin Appelman 2025-09-17 00:05:37 +02:00
commit b500fe772a
5 changed files with 11641 additions and 8280 deletions

View file

@ -46,7 +46,7 @@ name = "direct_hits"
path = "src/bin/direct_hits.rs"
[dependencies]
bitbuffer = { version = "0.11.0", features = ["serde"] }
bitbuffer = { version = "0.11.3", features = ["serde"] }
num_enum = "0.7.2"
num-traits = "0.2.19"
enumflags2 = { version = "0.7.10", features = ["serde"] }
@ -62,11 +62,11 @@ better-panic = { version = "0.3.0", optional = true }
fnv = "1.0.7"
tracing = { version = "0.1.40", optional = true }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"], optional = true }
itertools = "0.13.0"
itertools = "0.14.0"
const-fnv1a-hash = "1.1.0"
# schema
schemars = { version = "0.8.21", optional = true }
schemars = { version = "1.0.4", optional = true }
# codegen
quote = { version = "1", optional = true }
@ -80,7 +80,7 @@ prettyplease = { version = "0.2", optional = true }
log = { version = "0.4.21", features = [] }
[features]
schema = ["schemars", "bitbuffer/schemars"]
schema = ["schemars", "bitbuffer/schemars_1"]
trace = ["tracing", "tracing-subscriber"]
codegen = ["better-panic", "quote", "syn", "Inflector", "proc-macro2", "tempfile", "lazy_static", "prettyplease"]
write = []