-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
50 lines (43 loc) · 1.35 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
[package]
name = "portal"
version = "0.2.3"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bash/portal"
[lib]
name = "portal"
path = "src/lib.rs"
[[bin]]
name = "portal"
path = "src/main.rs"
[dependencies]
async-std = "1.12.0"
clap = { version = "4.1.8", features = ["derive"] }
color-hex = "0.2.0"
eframe = { version = "0.29.0", features = ["persistence"] }
egui = { version = "0.29.0", features = ["color-hex"] }
futures = "0.3.26"
opener = { version = "0.7.0", features = ["reveal"] }
poll-promise = { version = "0.3.0", features = ["async-std"] }
portal-proc-macro = { path = "crates/portal-proc-macro" }
portal-wormhole = { path = "crates/portal-wormhole" }
rfd = { version = "0.14.1" }
replace_with = "0.1.7"
tracing-subscriber = "0.3"
ubyte = "0.10.3"
thiserror = "1.0.38"
surf = "2.3.2"
serde = { version = "1.0.164", features = ["derive"] }
log = { version = "0.4.19", features = ["kv"] }
egui-theme-switch = { version = "0.2.0" }
[lints]
workspace = true
[workspace]
members = ["crates/portal-proc-macro", "crates/portal-wormhole", "xtask"]
[workspace.lints.clippy]
out_of_bounds_indexing = "allow"
str_to_string = "warn"
unwrap_used = "warn"
undocumented_unsafe_blocks = "deny" # Can't have forbid here because #[derive(Parser)] wants to allow all clippy restrictions.
[target.'cfg(windows)'.build-dependencies]
winresource = "0.1.15"