forked from free-audio/clap-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
50 lines (46 loc) · 1.1 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
[workspace]
members = [
".",
"tests/clack-synth",
"tests/clack-effect",
]
[package]
name = "clap-validator"
version = "0.3.2"
edition = "2024"
license = "MIT"
rust-version = "1.89.0" # MSRV
description = "A validator and automatic test suite for CLAP plugins"
readme = "README.md"
repository = "https://github.com/free-audio/clap-validator"
[dependencies]
anyhow = "1.0.58"
basic-toml = "0.1.10"
either = "1.9.0"
clap = { version = "4.5.58", features = ["derive", "wrap_help"] }
clap-sys = "0.5.0"
crossbeam = "0.8.4"
libloading = "0.9.0"
log = "0.4"
midi-consts = "0.1.0"
rand = "0.10.0"
rand_pcg = "0.10.1"
rayon = "1.6.1"
regex-lite = "0.1.8"
rustc-hash = "2.1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
strum = "0.28.0"
strum_macros = "0.28.0"
tempfile = "3.3"
textwrap = { version = "0.16.2", features = ["terminal_size"] }
time = { version = "0.3", features = ["serde"] }
walkdir = "2.3"
wait-timeout = "0.2.1"
yansi = "1.0.1"
[target.'cfg(target_os = "macos")'.dependencies]
core-foundation = "0.10.1"
[profile.profiling]
inherits = "release"
debug = true
strip = "none"