mirror of
https://codeberg.org/demostf/parser.git
synced 2026-06-03 10:14:06 +02:00
bumb dependencies
This commit is contained in:
parent
0b99f713f0
commit
490b4a03ab
2 changed files with 317 additions and 406 deletions
683
Cargo.lock
generated
683
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
42
Cargo.toml
42
Cargo.toml
|
|
@ -36,37 +36,37 @@ path = "src/bin/codegen.rs"
|
|||
required-features = ["codegen"]
|
||||
|
||||
[dependencies]
|
||||
bitbuffer = { version = "0.10.9", features = ["serde"] }
|
||||
num_enum = "0.5.7"
|
||||
num-traits = "0.2.15"
|
||||
enumflags2 = { version = "0.7.8", features = ["serde"] }
|
||||
snap = "1.1.0"
|
||||
serde = { version = "1.0.152", features = ["derive", "rc"] }
|
||||
serde_json = "1.0.91"
|
||||
serde_repr = "0.1.10"
|
||||
bitbuffer = { version = "0.11.0", features = ["serde"] }
|
||||
num_enum = "0.7.2"
|
||||
num-traits = "0.2.18"
|
||||
enumflags2 = { version = "0.7.9", features = ["serde"] }
|
||||
snap = "1.1.1"
|
||||
serde = { version = "1.0.197", features = ["derive", "rc"] }
|
||||
serde_json = "1.0.115"
|
||||
serde_repr = "0.1.18"
|
||||
err-derive = "0.3.1"
|
||||
parse-display = "0.8.0"
|
||||
parse-display = "0.9.0"
|
||||
main_error = "0.1.2"
|
||||
jemallocator = { version = "0.5.0", optional = true }
|
||||
jemallocator = { version = "0.5.4", optional = true }
|
||||
better-panic = { version = "0.3.0", optional = true }
|
||||
no-panic = { version = "0.1.17", optional = true }
|
||||
no-panic = { version = "0.1.29", optional = true }
|
||||
fnv = "1.0.7"
|
||||
steamid-ng = "1.0.0"
|
||||
tracing = { version = "0.1.37", optional = true }
|
||||
tracing-subscriber = { version = "0.3.16", features = ["env-filter"], optional = true }
|
||||
itertools = "0.10.5"
|
||||
tracing = { version = "0.1.40", optional = true }
|
||||
tracing-subscriber = { version = "0.3.18", features = ["env-filter"], optional = true }
|
||||
itertools = "0.12.1"
|
||||
|
||||
# schema
|
||||
schemars = { version = "0.8.11", optional = true }
|
||||
schemars = { version = "0.8.16", optional = true }
|
||||
|
||||
# codegen
|
||||
quote = { version = "1", optional = true }
|
||||
syn = { version = "1", features = ["full"], optional = true }
|
||||
syn = { version = "2", features = ["full"], optional = true }
|
||||
Inflector = { version = "0.11", default-features = false, optional = true }
|
||||
proc-macro2 = { version = "1", optional = true }
|
||||
tempfile = { version = "3", optional = true }
|
||||
lazy_static = { version = "1", optional = true }
|
||||
prettyplease = { version = "0.1", optional = true }
|
||||
prettyplease = { version = "0.2", optional = true }
|
||||
|
||||
[patch.crates-io]
|
||||
schemars = { git = 'https://github.com/icewind1991/schemars', branch = "simplify-generated-enum-code" }
|
||||
|
|
@ -78,11 +78,11 @@ trace = ["tracing", "tracing-subscriber"]
|
|||
codegen = ["better-panic", "quote", "syn", "Inflector", "proc-macro2", "tempfile", "lazy_static", "prettyplease"]
|
||||
|
||||
[dev-dependencies]
|
||||
pretty_assertions = "1.3.0"
|
||||
test-case = "2.2.2"
|
||||
pretty_assertions = "1.4.0"
|
||||
test-case = "3.3.1"
|
||||
iai = "0.1.1"
|
||||
criterion = "0.4.0"
|
||||
insta = { version = "1.34.0", features = ["json"] }
|
||||
criterion = "0.5.1"
|
||||
insta = { version = "1.38.0", features = ["json"] }
|
||||
|
||||
[profile.release]
|
||||
lto = "thin"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue