|
1 | 1 | [package] |
2 | 2 | name = "wallet" |
3 | 3 | version = "0.1.0" |
4 | | -authors = [ "CoBloX Team <[email protected]>" ] |
| 4 | +authors = [ "CoBloX Team <[email protected]>"] |
5 | 5 | edition = "2018" |
6 | 6 |
|
7 | 7 | [lib] |
8 | | -crate-type = [ "cdylib", "rlib" ] |
| 8 | +crate-type = ["cdylib", "rlib"] |
9 | 9 |
|
10 | 10 | [features] |
11 | | -default = [ "console_error_panic_hook" ] |
| 11 | +default = ["console_error_panic_hook"] |
12 | 12 |
|
13 | 13 | [dependencies] |
14 | | -aes-gcm-siv = { version = "0.9", features = [ "std" ] } |
| 14 | +aes-gcm-siv = { version = "0.9", features = ["std"] } |
15 | 15 | anyhow = "1" |
16 | 16 | baru = "0.1" |
17 | 17 | bdk = { version = "0.4", default-features = false } |
18 | | -bip32 = { version = "0.2", features = [ "secp256k1-ffi", "bip39" ], default-features = false } |
| 18 | +bip32 = { version = "0.2", features = ["secp256k1-ffi", "bip39"], default-features = false } |
19 | 19 | coin_selection = { path = "../../coin_selection" } |
20 | 20 | conquer-once = "0.3" |
21 | 21 | console_error_panic_hook = { version = "0.1.6", optional = true } |
22 | | -elements = { version = "0.17", features = [ "serde-feature" ] } |
| 22 | +elements = { version = "0.17", features = ["serde-feature"] } |
23 | 23 | estimate_transaction_size = { path = "../../estimate_transaction_size" } |
24 | 24 | futures = "0.3" |
25 | | -getrandom = { version = "0.2", features = [ "wasm-bindgen", "js" ] } |
| 25 | +getrandom = { version = "0.2", features = ["wasm-bindgen", "js"] } |
26 | 26 | hex = "0.4" |
27 | | -hkdf = { version = "0.10", features = [ "std" ] } |
| 27 | +hkdf = { version = "0.10", features = ["std"] } |
28 | 28 | itertools = "0.10" |
29 | 29 | js-sys = "0.3" |
30 | 30 | log = "0.4" |
31 | | -rand = { version = "0.6", features = [ "wasm-bindgen" ] } |
32 | | -rand_core = { version = "0.5", features = [ "std" ] } |
33 | | -reqwest = { version = "0.11", default-features = false, features = [ "rustls", "json" ] } |
| 31 | +rand = { version = "0.6", features = ["wasm-bindgen"] } |
| 32 | +rand_core = { version = "0.5", features = ["std"] } |
| 33 | +reqwest = { version = "0.11", default-features = false, features = ["rustls", "json"] } |
34 | 34 | rust_decimal = "1" |
35 | 35 | scrypt = { version = "0.5" } |
36 | | -serde = { version = "1", features = [ "derive" ] } |
| 36 | +serde = { version = "1", features = ["derive"] } |
37 | 37 | serde_json = "1" |
38 | 38 | sha2 = "0.9" |
39 | 39 | thiserror = "1" |
40 | | -wasm-bindgen = { version = "0.2", features = [ "serde-serialize" ] } |
| 40 | +wasm-bindgen = { version = "0.2", features = ["serde-serialize"] } |
41 | 41 | wasm-bindgen-futures = "0.4" |
42 | 42 | wasm-logger = "0.2" |
43 | | -web-sys = { version = "0.3", features = [ "Window", "Storage", "Cache", "CacheStorage", "StorageEvent" ] } |
| 43 | +web-sys = { version = "0.3", features = ["Window", "Storage", "Cache", "CacheStorage", "StorageEvent"] } |
44 | 44 |
|
45 | 45 | [dev-dependencies] |
46 | 46 | wasm-bindgen-test = "0.3.13" |
|
0 commit comments