-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (41 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
49 lines (41 loc) · 1.05 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
[package]
name = "noise_gui"
version = "0.1.5"
authors = ["John Wells <john@attackgoat.com>"]
edition = "2021"
description = "A graphical user interface for Noise-rs"
license = "MIT OR Apache-2.0"
[workspace]
members = ["crates/*"]
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
noise = "0.9"
[profile.release]
opt-level = 2 # fast and small wasm
# Optimize all dependencies even in debug builds:
[profile.dev.package."*"]
opt-level = 2
[dependencies]
crossbeam-channel = "0.5"
eframe = { version = "0.33", features = [
"serde",
"persistence",
]}
egui = "0.33"
egui-snarl = { version = "0.9", features = ["serde"] }
log = "0.4"
noise_expr = { version = "0.1", path="./crates/noise_expr" }
serde = { workspace = true }
noise = { workspace = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
anyhow = "1.0"
env_logger = "0.11"
rfd = "0.16"
ron = "0.12"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4"
web-sys = "0.3"
[build-dependencies]
anyhow = "1.0"
lazy_static = "1.4"
rand = "0.9"