-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (27 loc) · 848 Bytes
/
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
[package]
name = "psh-gui"
version = "0.2.0"
edition = "2021"
description = "Psh Password Manager GUI based on Yew"
readme = "README.md"
repository = "https://github.com/uvizhe/psh-gui"
license = "MIT"
keywords = ["password", "password-generator", "password-manager", "yew", "trunk"]
categories = ["gui", "wasm", "web-programming"]
authors = ["Alexander Uvizhev"]
[workspace]
members = ["src-tauri"]
[lib]
crate-type = ["rlib", "cdylib"]
[dependencies]
gloo-events = "0.1.2"
gloo-timers = "0.2.6"
once_cell = "1.17.0"
wasm-bindgen = "0.2.83"
web-sys = { version = "0.3.59", features = ["HtmlDivElement", "Navigator", "ScrollIntoViewOptions",
"ScrollLogicalPosition"] }
yew = { version="0.20", features=["csr"] }
psh = { version = "0.5.0", path = "../psh" }
psh-webdb = { version = "0.2.0", path = "../psh/webdb" }
[features]
keyboard = []