-
Notifications
You must be signed in to change notification settings - Fork 56
/
Cargo.toml
executable file
·70 lines (60 loc) · 2.01 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
[package]
name = "witnet"
version = "2.0.0-rc.2"
authors = ["Witnet Foundation <[email protected]>"]
publish = false
repository = "witnet/witnet-rust"
readme = "README.md"
license-file = "LICENSE"
keywords = ["witnet", "blockchain", "smart-contracts", "DON", "cryptocurrency", "crypto", "oracles", "protocol", "p2p", "rust"]
description = "An in-progress open source implementation of the Witnet protocol written in Rust."
edition = "2021"
[workspace]
members = ["config", "node", "crypto", "data_structures", "p2p", "storage", "wallet", "validations", "protected", "reputation", "net", "toolkit", "bridges/centralized-ethereum", "futures_utils"]
[features]
default = ["wallet", "node", "telemetry"]
node = ["witnet_node"]
telemetry = ["sentry", "witnet_node/telemetry"]
wallet = ["witnet_wallet"]
[badges]
travis-ci = { repository = "https://github.com/witnet/witnet-rust", branch = "master" }
[dependencies]
ansi_term = "0.12.1"
bytecount = "0.6.0"
ctrlc = "3.1.3"
env_logger = "0.9.0"
failure = "0.1.8"
futures = "0.3.8"
hex = "0.4.1"
itertools = "0.8.2"
lazy_static = "1.4.0"
log = "0.4.8"
num-format = "0.4.0"
prettytable-rs = { version = "0.10.0", default-features = false }
qrcode = "0.12"
sentry = { version = "0.29.3", features = ["log"], optional = true }
serde_json = "1.0.47"
structopt = "0.3.9"
terminal_size = "0.1.10"
toml = "0.5.6"
webbrowser = "0.8.7"
witnet_config = { path = "./config" }
witnet_crypto = { path = "./crypto" }
witnet_data_structures = { path = "./data_structures" }
witnet_node = { path = "./node", optional = true }
witnet_rad = { path = "./rad" }
witnet_util = { path = "./util" }
witnet_validations = { path = "./validations" }
witnet_wallet = { path = "./wallet", optional = true }
[dependencies.serde]
features = ["derive"]
version = "1.0.104"
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
[package.metadata.vcpkg]
git = "https://github.com/microsoft/vcpkg"
rev = "4c1db68"
[package.metadata.vcpkg.target]
x86_64-pc-windows-msvc = { triplet = "x64-windows-static", install = ["openssl"] }