forked from emilk/eframe_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
75 lines (71 loc) · 2.14 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
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
keywords = ["bank", "immutable", "webassembly"]
repository = "https://github.com/john-sharratt/immutable-phone"
publish = false
version = "0.1.0"
authors = ["John Sharratt <johnathan.sharratt@gmail.com>"]
edition = "2021"
rust-version = "1.75"
license = "MIT"
[workspace.dependencies]
egui = { version = "0.26" }
immutable-bank-model = { path = "crates/model" }
eframe = { version = "0.26", default-features = false, features = [
"default_fonts",
"glow",
"persistence",
] }
log = { version = "0.4" }
serde = { version = "1", features = ["derive"] }
env_logger = { version = "0.10" }
wasm-bindgen-futures = { version = "0.4" }
web-sys = { version = "0.3", features = ["HtmlAudioElement"] }
anyhow = { version = "1.0" }
include_dir = { version = "0.7" }
hyper = { version = "1.2" }
http-body-util = { version = "0.1" }
hyper-util = { version = "0.1", features = ["full"] }
tokio-tungstenite = { version = "0.21" }
bincode = { version = "1.3" }
serde_json = { version = "1.0" }
clap = { version = "4.5", features = ["derive"] }
rand = { version = "0.8" }
getrandom = { version = "0.2" }
bytes = { version = "1.5" }
futures = { version = "0.3" }
futures-util = { version = "0.3" }
clap-verbosity-flag = { version = "2.2" }
ws_stream_wasm = { version = "0.7" }
pharos = { version = "0.5" }
mime_guess = { version = "2.0" }
wasm-bindgen = { version = "0.2" }
hyper-tungstenite = { version = "0.13" }
gloo-net = { version = "0.5" }
base64 = { version = "0.21" }
indexmap = { version = "2.2.5", features = ["serde"] }
reqwest = { version = "0.11", features = ["json"] }
sha256 = { version = "1.5", default-features = false }
tokio = { version = "1.36", default-features = false, features = [
"rt-multi-thread",
"macros",
"fs",
"net",
"io-util",
"signal",
] }
http = { version = "1.0" }
tracing = { version = "0.1", default-features = false, features = ["std"] }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"smallvec",
"parking_lot",
"fmt",
"ansi",
"tracing-log",
] }
[profile.release]
opt-level = 2
[profile.dev.package."*"]
opt-level = 2