-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
90 lines (77 loc) · 1.89 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[package]
name = "ram-webgui"
version = "0.2.0"
edition = "2021"
description = "Webgui for ramemu"
readme = "README.md"
repository = "https://github.com/AVO-cado-team/ram-webgui"
license = "GPL3"
keywords = ["yew", "ram", "monaco"]
categories = ["gui", "wasm", "web-programming", "editor", "ide"]
default-run = "ram-webgui"
[[bin]]
name = "ram-webgui"
path = "src/main.rs"
[[bin]]
name = "hydrated"
path = "src/bin/hydrated.rs"
[features]
default = ["log/max_level_info"]
ssr = ["yew/ssr", "yew/hydration", "futures"]
[profile.release]
lto = true
codegen-units = 1
strip = "debuginfo"
opt-level = "z"
[dependencies]
yew = { version = "0.21", features = ["csr"] }
wasm-bindgen = "0.2.84"
js-sys = "0.3.61"
wasm-logger = "0.2.0"
log = "0.4.17"
urlencoding = "2.1.2"
console_error_panic_hook = "0.1.7"
futures = { version = "0.3.28", optional = true }
wasm-bindgen-futures = "0.4.37"
gloo = "0.11.0"
yewdux = "0.10.0"
serde = { version = "1.0.193", features = ["derive"] }
[dependencies.web-sys]
version = "0.3.61"
features = [
'Document',
'Window',
'Element',
'HtmlElement',
'Node',
'CssStyleDeclaration',
'HtmlAnchorElement',
'Navigator',
'Clipboard',
]
[dependencies.monaco]
git = "https://github.com/siku2/rust-monaco/"
rev = "bbc6523c0f97786a22d76ced650e6b31a1971f7a"
features = ["yew", "yew-components"]
[dependencies.ramemu]
git = "https://github.com/AVO-cado-team/ramemu.git"
tag = "0.1.9"
[workspace.lints]
[workspace.lints.clippy]
use_self = "warn"
pedantic = "warn"
perf = "warn"
missing-assert-message = "warn"
module-name-repetitions = "allow"
default-trait-access = "allow"
similar-names = "allow"
manual-assert = "allow"
redundant-closure-for-method-calls = "allow"
redundant_closure = "allow"
single-match-else = "allow"
too-many-lines = "allow"
cast-precision-loss = "allow"
cast-possible-wrap = "allow"
cast-possible-truncation = "allow"
cast-sign-loss = "allow"
cast-lossless = "allow"