-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (33 loc) · 1.11 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
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
edition = "2021"
version = "0.5.0"
authors = ["Tatsuya Maki <t28oogle@gmail.com>"]
license = "MIT"
homepage = "https://github.com/t28hub/auto-palette"
repository = "https://github.com/t28hub/auto-palette"
[workspace.dependencies]
assert_cmd = "2.0.14"
auto-palette = { version = "0.5.0", path = "crates/auto-palette", default-features = false }
clap = { version = "4.5.4", features = ["cargo"] }
getrandom = "0.2.15"
image = "0.25.1"
num-traits = "0.2.18"
predicates = "3.1.0"
rand = { version = "0.8.5", default-features = false, features = ["std_rng"] }
rand_distr = "0.4.3"
rstest = "0.23.0"
serde_json = "1.0.117"
wasm-bindgen-test = "0.3.42"
console_error_panic_hook = "0.1.7"
js-sys = "0.3.69"
wasm-bindgen = "0.2.92"
[profile.dev]
opt-level = 3
[profile.test]
opt-level = 3
[profile.release]
lto = true
opt-level = 's'