-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (34 loc) · 924 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
[package]
name = "wave2"
version = "0.1.0"
authors = ["James Connolly <jimmy@1024bees.com>"]
edition = "2018"
[dependencies]
tokio = "0.2.18"
iced = { version="0.3.0", features = ["tokio", "canvas"] }
env = "*"
nfd = "*"
log = "0.4.0"
env_logger = "0.7.1"
bincode = "*"
vcd = {git = "https://github.com/1024bees/rust-vcd", rev="48186f52f5cc5d6b012240e6c97f2cc7b9ddfb9f"}
iced_aw = {git = "https://github.com/1024bees/iced_aw", branch="rb3", features=["menu"] }
serde = "*"
cached = "*"
toml = "*"
strum = "0.19"
strum_macros = "0.19"
clap = "3.0.0-beta.1"
wave2_custom_widgets = { version= "0.1", path = "custom_widgets"}
wave2_wavedb = { version= "0.1", path = "wavedb"}
[profile.release]
debug = 2
[dev-dependencies]
tempfile = "3"
[workspace]
members = [ "widget_test/cell",
"widget_test/hscroll",
"widget_test/menu_bar",
"custom_widgets/widget_derives",
"wavedb",
]