-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (34 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "corsace-parser"
description = "An npm library built via rust/wasm for parsing osu! beatmaps and replays."
version = "0.2.3"
authors = ["riesha <[email protected]>", "VINXIS <[email protected]>"]
repository = "https://github.com/Corsace/corsace-parser"
license = "MIT"
edition = "2018"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["console_error_panic_hook"]
[dependencies]
wasm-bindgen = "0.2.92"
console_error_panic_hook = { version = "0.1.7", optional = true }
lzma-rs = "0.3.0"
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.6.0"
serde_json = { version = "1.0.103"}
bitflags = { version = "2.3.3", features = ["serde"] }
thiserror = "1.0.43"
byteorder = "1.5.0"
itertools = "0.11.0"
rosu-pp = "0.9.4"
tsify = { version = "0.4.5", features = ["js"] }
libosu = { git = "https://github.com/Corsace/libosu", features = ["serde"] }
md5 = "0.7.0"
js-sys = "0.3.64"
[dev-dependencies]
wasm-bindgen-test = "0.3.34"
web-time = "1.1.0"
[profile.release]
lto = true
opt-level = 3