This commit is contained in:
Robin Appelman 2022-05-18 19:11:03 +02:00
commit 7a481af84e
4 changed files with 172 additions and 6 deletions

View file

@ -3,6 +3,7 @@ name = "democutter"
version = "0.1.0"
authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2021"
default-run = "cut"
[lib]
crate-type = ["cdylib", "rlib"]
@ -11,13 +12,17 @@ crate-type = ["cdylib", "rlib"]
name = "cut"
path = "src/cut.rs"
[[bin]]
name = "bookmarks"
path = "src/bookmarks.rs"
[features]
default = ["console_error_panic_hook"]
[dependencies]
bitbuffer = "0.10"
tf-demo-parser = { version = "0.4", git = "https://github.com/demostf/parser" }
#tf-demo-parser = { version = "0.4", path = "../tf-demo-parser" }
#tf-demo-parser = { version = "0.4", git = "https://github.com/demostf/parser" }
tf-demo-parser = { version = "0.4", path = "../tf-demo-parser" }
wasm-bindgen = "0.2.63"
web-sys = { version = "0.3", features = ["console"] }