-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (43 loc) · 1.63 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
[package]
name = "hekk"
version = "0.0.0"
authors = [ "adumbidiot <[email protected]>" ]
edition = "2018"
license = "MIT"
resolver = "2"
[dependencies]
anyhow = "1.0.43"
bitflags = "1.3.2"
crossbeam-channel = "0.5.1"
iced = { version = "0.3.0", features = [ "tokio" ] }
iced_aw = { git = "https://github.com/iced-rs/iced_aw", rev = "3dfce43396af457aaee835dbe281663a41a261ab", default-features = false, features = [ "tabs" ] }
iphlpapi = { git = "https://github.com/adumbidiot/iphlpapi-rs", rev = "8595667546ef2e626c7a4057796d1f7d40f3b469" }
log = "0.4.14"
macaddr = "1.0.1"
netcon = { path = "lib/netcon-rs" }
once_cell = "1.8.0"
serde = { version = "1.0.127", features = [ "derive" ] }
skylight = { git = "https://github.com/adumbidiot/skylight-rs", features = [ "objbase", "shlobj" ] }
tokio = { version = "1.10.0", features = [ "sync" ] }
toml = "0.5.8"
uuid = "0.8.2"
winapi = "0.3.9"
winreg = "0.9.0"
[build-dependencies]
winres = "0.1.11"
[patch.crates-io]
# Get wgpu 0.9.x + update winit
iced = { git = "https://github.com/hecrj/iced", rev = "06d0158efbaadc5ae0a6dea22e7a761a3e1c2a8f" }
iced_futures = { git = "https://github.com/hecrj/iced", rev = "06d0158efbaadc5ae0a6dea22e7a761a3e1c2a8f" }
iced_native = { git = "https://github.com/hecrj/iced", rev = "06d0158efbaadc5ae0a6dea22e7a761a3e1c2a8f" }
iced_graphics = { git = "https://github.com/hecrj/iced", rev = "06d0158efbaadc5ae0a6dea22e7a761a3e1c2a8f" }
iced_style = { git = "https://github.com/hecrj/iced", rev = "06d0158efbaadc5ae0a6dea22e7a761a3e1c2a8f" }
[profile.release]
opt-level = 3
codegen-units = 1
lto = true
[workspace]
members = [
"lib/netcon-sys",
"lib/netcon-rs",
]