mirror of
https://codeberg.org/demostf/edit.git
synced 2026-06-03 11:54:07 +02:00
cargo updates
This commit is contained in:
parent
48e94c7609
commit
4a970e81a2
3 changed files with 1201 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,6 +1,5 @@
|
||||||
target
|
target
|
||||||
**/*.rs.bk
|
**/*.rs.bk
|
||||||
wasm/Cargo.lock
|
|
||||||
bin/
|
bin/
|
||||||
pkg/
|
pkg/
|
||||||
wasm-pack.log
|
wasm-pack.log
|
||||||
|
|
|
||||||
1197
wasm/Cargo.lock
generated
Normal file
1197
wasm/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -14,11 +14,11 @@ required-features = ["cli"]
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["console_error_panic_hook"]
|
default = ["console_error_panic_hook"]
|
||||||
cli = ["clap"]
|
cli = ["clap", "env_logger"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitbuffer = "0.10.5"
|
bitbuffer = "0.10.5"
|
||||||
tf-demo-parser = { version = "0.4", git = "https://github.com/demostf/parser" }
|
tf-demo-parser = { version = "0.5" }
|
||||||
#tf-demo-parser = { version = "0.4", path = "../tf-demo-parser" }
|
#tf-demo-parser = { version = "0.4", path = "../tf-demo-parser" }
|
||||||
wasm-bindgen = { version = "0.2.45" }
|
wasm-bindgen = { version = "0.2.45" }
|
||||||
serde-wasm-bindgen = "0.4"
|
serde-wasm-bindgen = "0.4"
|
||||||
|
|
@ -37,9 +37,11 @@ console_error_panic_hook = { version = "0.1.6", optional = true }
|
||||||
# Unfortunately, `wee_alloc` requires nightly Rust when targeting wasm for now.
|
# Unfortunately, `wee_alloc` requires nightly Rust when targeting wasm for now.
|
||||||
wee_alloc = { version = "0.4.5", optional = true }
|
wee_alloc = { version = "0.4.5", optional = true }
|
||||||
clap = { version = "4.0.18", features = ["derive"], optional = true }
|
clap = { version = "4.0.18", features = ["derive"], optional = true }
|
||||||
|
env_logger = { version = "0.11.8", optional = true }
|
||||||
num_enum = "0.5.7"
|
num_enum = "0.5.7"
|
||||||
parse-display = "0.5.5"
|
parse-display = "0.5.5"
|
||||||
serde = { version = "1.0.139", features = ["derive"] }
|
serde = { version = "1.0.139", features = ["derive"] }
|
||||||
|
log = { version = "0.4.17", features = [] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
wasm-bindgen-test = "0.3.13"
|
wasm-bindgen-test = "0.3.13"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue