-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (57 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
64 lines (57 loc) · 1.26 KB
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
56
57
58
59
60
61
62
63
64
[workspace]
members = ["core"]
[workspace.package]
version = "0.4.0-dev"
edition = "2021"
authors = ["Open Canarias S.L.<taple@opencanarias.com>"]
description = "TAPLE Protocol reference implementation"
readme = "README.md"
homepage = "https://www.taple.es"
repository = "https://github.com/opencanarias/taple-core"
license = "AGPL-3.0-only"
keywords = ["blockchain", "distributed-ledger", "taple", "sustainability"]
rust-version = "1.67"
[workspace.dependencies]
serde = "1.0.100"
serde_json = "1.0.97"
tokio = "1.20"
tokio-util = "0.7"
tokio-stream = "0.1"
rmp-serde = "1"
thiserror = "1"
blake3 = "1"
ed25519-dalek = "1"
async-trait = "0.1.56"
getrandom = "0.2"
borsh = "0.10.3"
async-std = "1.12"
config = "0.13.2"
json-patch = "1"
jsonschema = { version = "0.17", default_features = false }
rand = "0.8.5"
base64 = "0.13"
blake2 = "0.10"
instant = "0.1.11"
unsigned-varint = "0.7"
time = "0.3"
libsecp256k1 = "0.7"
sha2 = "0.10"
sha3 = "0.10"
futures = "0.3.24"
log = "0.4"
hex = "0.4.3"
libp2p = { version = "0.45.1", default_features = false }
wasmtime = "9.0.4"
serial_test = "1"
[profile.release]
lto = true
codegen-units = 1
debug = false
debug-assertions = false
panic = "abort"
[profile.test]
debug = true
[profile.dev]
debug = true
[profile.doc]
debug-assertions = false