-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (43 loc) · 1.6 KB
/
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
[package]
authors = ["elois <[email protected]>"]
description = "Set of libraries implementing the DUBP protocol."
edition = "2018"
keywords = ["duniter", "dubp"]
license = "AGPL-3.0"
name = "dubp"
readme = "README.md"
repository = "https://git.duniter.org/libs-dupb-rs-libs"
version = "0.58.0"
[lib]
path = "lib.rs"
[dependencies]
dubp-block = { path = "block", optional = true, version = "0.58.0" }
dubp-common = { path = "common", version = "0.58.0" }
dubp-documents = { path = "documents", version = "0.58.0" }
dubp-documents-parser = { path = "documents-parser", version = "0.58.0" }
dubp-wallet = { path = "wallet", version = "0.58.0" }
duniter-bda-types = { path = "bda-types", version = "0.58.0" }
duniter-peer = { path = "peer", version = "0.58.0" }
dup-crypto = { path = "crypto", default-features = false, version = "0.58.0" }
[features]
# meta-feature for "standard" clients (gcli, gecko, etc)
client = ["dup-crypto/client", "dubp-common/client", "duniter-peer/client", "dubp-wallet/client", "dubp-documents/client", "dubp-documents-parser/client", "duniter-bda-types/client"]
# meta-feature for duniter
duniter = ["dup-crypto/duniter", "dubp-common/duniter", "duniter-peer/duniter", "dubp-wallet/duniter", "dubp-documents/duniter", "dubp-documents-parser/duniter", "duniter-bda-types/duniter", "dubp-block/duniter"]
[dev-dependencies]
rusty-hook = "0.11.2"
[workspace]
members = [
"bda-types",
"block",
"common",
"crypto",
"documents",
"documents-parser",
"peer",
"wallet"
]
[profile.test]
opt-level = 3
[patch.crates-io]
#json-pest-parser = { path = "../../../rust/json-pest-parser" }