forked from Glubus/Rhythm-Open-Exchange
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (60 loc) · 1.34 KB
/
Cargo.toml
File metadata and controls
71 lines (60 loc) · 1.34 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "rhythm-open-exchange"
version = "0.6.2"
edition = "2024"
license = "MIT"
repository = "https://github.com/Glubus/rhythm-open-exchange"
keywords = [
"resources",
"osu",
"vsrg",
"calc",
"beatmap",
]
categories = ["config", "development-tools::build-utils"]
readme = "README.md"
description = "A try to create the ffmpeg of vsrg"
[[bin]]
name = "rox-cli"
path = "src/bin/rox.rs"
required-features = ["compression", "analysis"]
[lib]
crate-type = ["rlib", "cdylib"]
[features]
default = []
wasm = []
compression = ["dep:zstd"]
analysis = []
all = ["compression", "analysis"]
[dependencies]
rkyv = { version = "0.8" }
bitflags = "2.9"
rand = "0.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
thiserror = "2.0.17"
tracing = "0.1.44"
blake3 = "1.8.2"
memmap2 = "0.9.9"
memchr = "2.7.6"
atoi = "2.0.0"
compact_str = { version = "0.9.0", features = ["serde", "rkyv"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
zstd = { version = "0.13", optional = true }
[dev-dependencies]
criterion = "0.8.1"
tempfile = "3.17"
[[bench]]
name = "codec_bench"
harness = false
required-features = ["compression"]
[[bench]]
name = "format_bench"
harness = false
[[bench]]
name = "rox_only"
harness = false
required-features = ["compression"]
[workspace]
members = [".", "bindings/ffi"]