-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
executable file
·53 lines (48 loc) · 1.33 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
[package]
name = "wasi-sol"
version = "0.0.7"
edition = "2021"
description = "🔒 A Solana Wallet adapter for WASM frameworks."
license = "MIT"
keywords = ["blockchain", "solana", "wasm", "yew", "dioxus"]
categories = ["web-programming", "cryptography", "wasm"]
repository = "https://github.com/gigadao/wasi-sol"
documentation = "https://docs.rs/wasi-sol"
authors = [
"GigaDAO Core Maintainers",
"Mahmoud Harmouch <[email protected]>",
]
exclude = ["examples"]
[dependencies]
anyhow = "1.0.86"
log = "0.4.21"
serde_json = "1.0.117"
solana-sdk = "=1.18.0"
thiserror = "1.0.61"
wasm-bindgen-futures = "0.4.42"
gloo-storage = "0.3.0"
js-sys = "0.3.69"
serde = { version = "1.0.203", features = ["derive"] }
wasm-bindgen = { version = "0.2.92", features = ["serde-serialize"] }
solana-client-wasm = "1.18.0"
emitter-rs = "0.0.5"
yew = { version = "0.21.0", optional = true }
dioxus = { version = "0.5", optional = true }
leptos = { version = "0.6.12", optional = true }
serde-wasm-bindgen = "0.6.5"
web-sys = { version = "0.3.69", features = ["Window"] }
bincode = "1.3.3"
[features]
yew = ["dep:yew", ]
dio = ["dioxus", ]
lep = ["leptos", ]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[profile.release]
codegen-units = 1
opt-level = 3
lto = "thin"
strip = "symbols"
[badges]
maintenance = { status = "actively-developed" }