-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 769 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (31 loc) · 769 Bytes
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
[package]
name = "noscript"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
csv = "1.3.0"
js-sys = "0.3.64"
nostr-sdk = "0.26.0"
tokio = { version = "1", features = ["full"] }
once_cell = "1.19.0"
serde = {version = "1.0.193", features = ["derive"]}
serde-wasm-bindgen = "0.6.3"
serde_derive = "1.0.194"
serde_json = "1.0.109"
unicode-segmentation = "1.10.1"
wasm-bindgen = "0.2.87"
wasm-bindgen-futures = "0.4.39"
web-sys = {version = "0.3.66", features = ["console"]}
base64 = "0.21.5"
[[bin]]
name = "deploy"
path = "src/deploy.rs"
[[bin]]
name = "send"
path = "src/send_test_data.rs"
[lib]
crate-type = ["cdylib"]
[profile.release]
lto = true
opt-level = "z"