-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
24 lines (22 loc) · 872 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
[package]
name = "hdwallet_rs"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "HD wallet implementation for Solana built with Rust"
homepage = "https://github.com/ECJ222/hdwallet-rs"
repository = "https://github.com/ECJ222/hdwallet-rs"
readme = "README.md"
keywords = ["crypto", "web3", "payment", "hdwallet"]
categories = ["cryptography::cryptocurrencies"]
authors = ["ENOCH <enochchejieh@gmail.com>", "JIBRIL <Gupajibril@gmail.com>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bip0039 = { version = "0.10.1", features = ["czech", "french", "italian", "japanese", "korean", "portuguese", "spanish", "chinese-simplified", "chinese-traditional"]}
curve25519-dalek = "3.2.1"
ed25519-dalek = "1.0.1"
ring = "0.16"
tikv-jemallocator = "0.4.0"
base58 = "0.1"
hex = "0.4"
ripemd160 = "0.8"