-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (46 loc) · 1.37 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
[package]
name = "play"
version = "1.1.4"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aiken-lang = { git = "https://github.com/aiken-lang/aiken" }
uplc = { git = "https://github.com/aiken-lang/aiken" }
getrandom = { version = "0.2.9", features = ["js"] }
indexmap = "1.9.2"
leptos = { version = "0.3.0", features = ["stable"] }
leptos_icons = { version = "0.0.11", default-features = false, features = [
"csr",
"BiLinkExternalRegular",
"LuDices",
"RiAlertSystemLine",
"RiBook2DocumentFill",
"RiClipboardDocumentLine",
"RiCloseSystemLine",
"RiCpuDeviceLine",
"RiDatabase2DeviceLine",
"RiDiscordLogosFill",
"RiErrorWarningSystemLine",
"RiFileEditDocumentLine",
"RiGithubLogosFill",
"RiPlayMediaFill",
"RiRefreshSystemLine",
"RiSettings3SystemFill",
"RiShareForwardSystemFill",
] }
leptos_router = { version = "0.3.0", features = ["stable", "csr"] }
supports-color = "1.3.1"
fastrand = "2.1.1"
monaco = { git = "https://github.com/siku2/rust-monaco.git" }
wasm-bindgen = { version = "0.2.84" }
web-sys = { version = "0.3.61", features = ["Navigator", "Clipboard"] }
miette = "7.2.0"
js-sys = "0.3.61"
base64 = "0.21.0"
brotli = "3.3.4"
console_error_panic_hook = "0.1.7"
[profile.release]
codegen-units = 1
opt-level = "z"
lto = true
debug = false