-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (43 loc) · 1.16 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
[package]
name = "l3x-ide"
version = "0.3.0"
edition = "2021"
[profile.wasm-release]
inherits = "release"
opt-level = "z"
lto = "fat"
[patch.crates-io]
macroquad = { git = 'https://github.com/not-fl3/macroquad.git', rev = "fc978f08d37e07b4bdd86d3ede8b4577d4ac5b2e" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
rfd = "0.11"
async-executor = "1.5"
futures-lite = "1.13"
[dependencies]
macroquad = { version = "0.3", default-features = false }
egui-macroquad = { version = "0.15", default-features = false }
egui = "0.21"
log = "0.4"
simple_logger = "4.1"
itertools = "0.10"
tap = "1.0"
thiserror = "1.0"
duplicate = "1.0"
vec-drain-where = "1.0"
if_chain = "1.0"
cfg-if = "1"
strum = "0.24"
strum_macros = "0.24"
const-push = { git = "https://github.com/zbrachinara/const-push", default-features = false}
const-str = "0.5"
# TODO test with web app
rodio = { version = "0.17", default-features = false }
single_value_channel = "1"
num-bigint = "0.4"
num-prime = "0.4"
ndarray-csv = "0.5"
smallvec = "1.10"
arrayvec = "0.7"
bitflags = "2.2"
csv = "1.1"
ndarray = "0.15"