-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
69 lines (59 loc) · 1.91 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
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
[package]
name = "s-rack"
version = "0.3.1"
edition = "2021"
repository = "https://github.com/sharph/s-rack"
authors = ["Sharp Hall <[email protected]>"]
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"]
[package.metadata.wix]
upgrade-guid = "D45C9789-E08F-47C7-8741-A7D8F2ABA524"
path-guid = "68C33B7C-EA10-4256-BBB6-63596094B2D4"
license = false
eula = false
[dependencies]
cpal = { version = "0.15.3", features = ["wasm-bindgen"] }
eframe = { version = "0.28.1", features = ["glow"] }
egui = "0.28.1"
uuid = { version = "1.10.0", features = ["v4"] }
getrandom = { version = "0.2", features = ["js"] }
log = "0.4.22"
itertools = "0.13.0"
by_address = "1.2.1"
rfd = "0.14.1"
hound = "3.5.1"
rand = "0.8.5"
serde = { version = "1.0.209", features = ["derive", "alloc", "rc"] }
rmp-serde = "1.3.0"
freeverb = "0.1.0"
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
env_logger = "0.11.5"
futures = "0.3.30"
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4"
# to access the DOM (to hide the loading text)
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3.70"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.22.0"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell", "msi"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
install-updater = false
[workspace.metadata.dist.dependencies.apt]
libasound2-dev = '*'