-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 1018 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 = "lunesrs"
readme = "README.md"
edition = "2021"
version = "1.9.4"
license = "Apache-2.0"
authors = ["Lunes Platform <[email protected]>"]
repository = "https://github.com/lunes-platform/lunesrs"
description = "Library for communication with nodes in mainnet or testnet of the lunes-blockchain network Allows the automation of sending assets, issue end reissue tokens, leasing, registry, and create new wallet."
keywords = ["ed25519-axolotl", "lunes", "cryptography", "cryptocurrencies", "wasm"]
categories = ["algorithms", "cryptography::cryptocurrencies", "cryptography", "wasm"]
[dependencies]
tiny-keccak = { version = "2.0.0", features = ["keccak"] }
getrandom = { version = "0.2", features = ["js"] }
wasm-bindgen-test = "0.3.29"
ed25519-axolotl = "1.7.1"
wasm-bindgen = "0.2.78"
blake2 = "0.10.2"
sha2 = "0.10.1"
rand = "0.8.4"
bs58 = "0.4.0"
[package.metadata.wasm-pack.profile.release]
wasm-opt = false
[profile.release]
opt-level = "s"
lto = true
[lib]
crate-type = ["cdylib", "rlib"]