-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
48 lines (40 loc) · 961 Bytes
/
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
40
41
42
43
44
45
46
47
48
[package]
name = "soundsense-rs"
version = "1.5.2"
build = "build.rs"
authors = ["prixt <[email protected]>"]
edition = "2018"
description = "A Rusty SoundSense alternative"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
edge = ["web-view/edge"]
[dependencies]
regex = {version="1.3", default-features=false, features=["std", "perf"]}
rodio = "0.11.0"
quick-xml = "0.17"
rand = "0.7"
lazy_static = "1.4"
crossbeam = "0.7.3"
web-view = "0.6"
tinyfiledialogs = "3.3.9"
getopts = "0.2"
webbrowser = "0.5.2"
dirs = "2.0"
log = "0.4.8"
env_logger = "0.7.1"
[build-dependencies]
winres = "0.1"
html-minifier = "1.1.16"
[profile.dev.package.rodio]
debug-assertions = false
[profile.release]
lto = true
codegen-units = 1
opt-level = "z"
incremental = false
panic = "abort"
[profile.release.build-override]
opt-level = 0
[package.metadata.winres]
LegalCopyright = "© 2019-2020 prixt"