-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
75 lines (68 loc) · 1.75 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "drogue-device-simulator"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1"
base64 = "0.13"
chrono = "0.4"
float-cmp = "0.9"
futures = "0.3"
gloo-storage = "0.2"
gloo-timers = { version = "0.2", features = ["futures"] }
gloo-utils = "0.1"
humantime = "2"
humantime-serde = "1"
itertools = "0.10"
js-sys = "0.3.50"
log = "0.4"
monaco = { version = "0.3", features = ["yew-components"] }
multimap = "0.8"
num-traits = "0.2"
patternfly-yew = "0.2.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.8"
strum = { version = "0.24", features = ["derive"] }
url = "2"
uuid = { version = "1", features = ["v4"] }
wasm-bindgen-futures = "0.4"
wasm-logger = "0.2"
yew = "0.19"
yew-agent = "0.1"
yew-router = { version = "0.16", package = "yew-router-nested" }
# For wasm-bindgen we need the exact version, as it will be required by the wasm-pack tool.
# Updating this dependency requires:
# * Update the dependency version here
# * Create a new builder image, with the same version of wasm-bindgen pre-installed
wasm-bindgen = "=0.2.82"
web-sys = { version = "0.3", features = [
"AbortController",
"AbortSignal",
"DeviceOrientationEvent",
"DeviceAcceleration",
"Headers",
"Location",
"Request",
"RequestCache",
"RequestCredentials",
"RequestInit",
"RequestMode",
"RequestRedirect",
"Response",
"MessageEvent",
"WebSocket",
"Window",
] }
[patch.crates-io]
#patternfly-yew = { git = "https://github.com/ctron/patternfly-yew", rev = "60790bd3ed29a8eafd7f176eb17b7a7cbfb0af4c" }
patternfly-yew = { path = "../patternfly-yew" }
[dev-dependencies]
env_logger = "0.9"
[features]
default = []
[profile.release]
panic = 'abort'
codegen-units = 1
opt-level = 's'
lto = true