-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 744 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (28 loc) · 744 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
[package]
name = "awake"
license = "MPL-2.0"
version = "0.1.0"
authors = ["Savannah Jackson <Boisterouscoder@gmail.com>"]
edition = "2018"
[lib]
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[dependencies]
wasm-bindgen = "0.2.63"
wasm-bindgen-futures = "0.4.33"
futures = "0.3"
serde = {version = "1.0.115", features = ["derive"]}
serde_json = "1.0"
bs58 = "0.4.0"
base64 = "0.13.0"
js-sys = "0.3.60"
ucan = "0.7.0-alpha.1"
anyhow = "^1"
web-sys = {version = "0.3.60", features = ["Window", "Crypto", "SubtleCrypto", "CryptoKeyPair", "CryptoKey", "console"]}
getrandom = { version = "0.2", features = ["js"] }
[dev-dependencies]
wasm-bindgen-test = "0.3.13"
quickcheck = "1.0.3"
quickcheck_macros = "1"
[profile.release]
debug = true