-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
44 lines (37 loc) · 968 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
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "walleth"
version = "0.1.0"
authors = ["mikesposito"]
license-file = "LICENSE"
readme = "README.md"
description = "A (WIP) Rust library for easily create, manage, use and protect Ethereum accounts."
edition = "2021"
repository = "https://github.com/mikesposito/walleth/"
keywords = ["ethereum", "wallet", "library", "crypto", "signing"]
[workspace]
members = [
"crates/identity",
"crates/keychain",
"crates/keychain/hdkey",
"crates/utils",
"crates/vault",
"crates/vault/safe",
]
[dependencies.identity]
path = "crates/identity"
package = "walleth-identity"
[dependencies.vault]
path = "crates/vault"
package = "walleth-vault"
[dependencies.safe]
path = "crates/vault/safe"
package = "walleth-vault-safe"
[dependencies.utils]
path = "crates/utils"
package = "walleth-utils"
[dependencies.keychain]
path = "crates/keychain"
package = "walleth-keychain"
[dependencies.hdkey]
path = "crates/keychain/hdkey"
package = "walleth-keychain-hdkey"