-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (42 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
50 lines (42 loc) · 1.02 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
[package]
name = "x3"
description = "A CPU efficient audio encoder/decoder using the X3 codec."
version = "0.3.1"
authors = ["Simon M. Werner <simonwerner@gmail.com>"]
license = "GPL-3.0-or-later"
readme = "README.md"
edition = "2024"
repository = "https://github.com/psiphi75/x3-rust"
keywords = ["audio", "compression"]
categories = ["compression", "embedded", "encoding", "multimedia::audio"]
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
# debug = true # Enable debug for `perf` profiling
[build-dependencies]
clippy = { version = "^0.0.302", optional = true }
[dev-dependencies]
criterion = "0.8"
[dependencies]
byteorder = { version = "1.3.4", default-features = false }
hound = "3.5.1"
quick-xml = "0.38"
clap = "2.33.1"
chrono = "0.4.15"
itoa = "1.0.15"
[features]
# default = ["std"]
std = []
alloc = []
[[bin]]
name = "x3"
path = "src/bin/x3.rs"
required-features = ["std"]
[[bin]]
name = "wav_to_str"
path = "src/bin/wav_to_str.rs"
required-features = ["std"]
[[bench]]
name = "x3-bench"
harness = false