-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (55 loc) · 1.5 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
[package]
name = "tauri_noise_ninja-ui"
version = "0.0.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
leptos = { version = "0.6", features = ["csr", "nightly"] }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
tauri-sys = { git = "https://github.com/JonasKruckenberg/tauri-sys", branch = "v2", features = [
"core",
"event",
] }
js-sys = { version = "0.3", features = [] }
web-sys = { version = "0.3", features = [
"HtmlAudioElement",
"HtmlMediaElement",
'Headers',
'Request',
'RequestInit',
'RequestMode',
'Response',
'Window',
'Navigator',
'MediaSession',
] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde-wasm-bindgen = "0.6"
console_error_panic_hook = "0.1.7"
leptos_heroicons = { git = "https://github.com/bbstilson/leptos_heroicons.git", features = [
"24-outline-play-circle",
"24-outline-pause-circle",
"24-outline-speaker-wave",
"24-outline-speaker-x-mark",
"24-outline-arrows-right-left",
"24-outline-folder",
"24-outline-trash",
"24-outline-check-circle",
"24-outline-calendar-days",
"24-outline-clock",
"24-outline-bars-2",
"24-outline-x-mark",
] }
regex = "1.10.5"
leptos-use = "0.13"
rand = "0.8"
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
[workspace]
members = ["lib-generator", "src-tauri"]
[package.metadata.leptos]
# Activates the tailwind build
tailwind-input-file = "tailwind.css"
tailwind-config-file = "tailwind.config.js"