This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathCargo.toml
79 lines (66 loc) · 1.89 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Copyright 2017 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ------------------------------------------------------------------------------
[package]
name = "sawtooth-sdk"
version = "0.5.3"
authors = ["Bitwise IO, Inc.", "Intel Corporation"]
build = "build.rs"
license = "Apache-2.0"
description = """\
Hyperledger Sawtooth is an enterprise blockchain platform for building \
distributed ledger applications and networks.
"""
repository = "https://github.com/hyperledger/sawtooth-sdk-rust"
edition = "2018"
[features]
default = [
"consensus",
"messaging",
"processor",
"signing",
"pem",
]
stable = [
"default",
]
experimental = []
consensus = ["zmq"]
messaging = ["zmq"]
processor = ["messaging", "zmq", "ctrlc"]
signing = ["secp256k1"]
# Add support for loading PEM encoded private keys
pem = ["signing", "openssl"]
[dependencies]
hex = "0.4"
protobuf = "2"
secp256k1 = { version = "0.27", optional = true }
rand = { version = "0.8", features = ["getrandom"]}
sha2 = "0.10"
zmq = { version = "0.9", optional = true }
uuid = { version = "0.8", features = ["v4"] }
log = "0.4"
libc = "0.2"
ctrlc = { version = "3.0", features = ["termination"], optional = true}
openssl = { version = "0.10", optional = true }
[dev-dependencies]
env_logger = "0.9"
[build-dependencies]
protoc-rust = "2.0"
glob = "0.3"
[package.metadata.docs.rs]
features = [
"stable",
"experimental"
]