-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
55 lines (48 loc) · 1015 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
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "xmr"
version = "0.1.0"
authors = [
"Jean Pierre Dudey <jeandudey@hotmail.com>",
"Parity Technologies <admin@parity.io>"
]
license = "GPL-3.0-only"
description = "Monero node implementation in Rust."
documentation = "https://github.com/xmr-rs/xmr"
homepage = "https://github.com/xmr-rs/xmr"
repository = "https://github.com/xmr-rs/xmr.git"
include = ["LICENSE-GPL"]
[[bin]]
name = "dxmr"
path = "dxmr/main.rs"
[workspace]
members = [
"chain",
"crypto",
"db",
"format",
"keys",
"levin",
"network",
"p2p",
"portable-storage-utils",
"portable-storage",
"primitives",
"rct",
"storage",
"sync",
"varint",
"verification",
]
[dependencies]
app_dirs = "1.1.1"
clap = "2.29.2"
env_logger = "0.5.0"
log = "0.4.1"
failure = "0.1.1"
rand = "0.4.2"
xmr-chain = { path = "chain" }
xmr-db = { path = "db" }
xmr-network = { path = "network" }
xmr-storage = { path = "storage" }
xmr-p2p = { path = "p2p" }
xmr-sync = { path = "sync" }