-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
84 lines (71 loc) · 2.66 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
80
81
82
83
84
[workspace]
resolver = "2"
members = [
"client",
"client/cli",
"metrics",
"periodic",
"primitives",
"relayer",
]
[profile.release]
panic = "unwind"
[workspace.package]
authors = ["bifrost-platform"]
homepage = "https://www.bifrostnetwork.com"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/bifrost-platform/bifrost-relayer.rs"
[workspace.dependencies]
# General
log = "0.4.20"
env_logger = "0.10.0"
sentry = { version = "0.32.1", default-features = false, features = [
"reqwest",
"rustls",
"backtrace",
"contexts",
"panic",
] }
async-trait = "0.1.73"
async-recursion = "1.0.5"
clap = "4.4.6"
cron = "0.12.0"
chrono = "0.4.31"
thiserror = "1.0.49"
futures = "0.3.28"
reqwest = { version = "0.12.5", default-features = false, features = [
"rustls-tls",
"json",
"http2",
] }
rand = "0.8.5"
lazy_static = "1.4.0"
url = "2.5.0"
array-bytes = "6.1"
serde_yaml = "0.9.25"
serde = "1.0.188"
serde_json = "1.0.107"
hex = "0.4.3"
ethers = { git = "https://github.com/bifrost-platform/ethers-rs", tag = "ethers-v2.0.10-arbitrum-support" }
k256 = "0.13.1"
sha3 = "0.10.8"
miniscript = "11.0.0"
bitcoincore-rpc = { git = "https://github.com/bifrost-platform/rust-bitcoincore-rpc", branch = "reqwest-migration" }
tokio = "1.33.0"
tokio-stream = "0.1.14"
subxt = "0.37.0"
# Substrate Clients
sc-cli = { git = "https://github.com/bifrost-platform/polkadot-sdk", default-features = false, branch = "bifrost-polkadot-v1.12.0" }
sc-utils = { git = "https://github.com/bifrost-platform/polkadot-sdk", default-features = false, branch = "bifrost-polkadot-v1.12.0" }
sc-service = { git = "https://github.com/bifrost-platform/polkadot-sdk", default-features = false, branch = "bifrost-polkadot-v1.12.0" }
sc-sysinfo = { git = "https://github.com/bifrost-platform/polkadot-sdk", default-features = false, branch = "bifrost-polkadot-v1.12.0" }
sc-keystore = { git = "https://github.com/bifrost-platform/polkadot-sdk", default-features = false, branch = "bifrost-polkadot-v1.12.0" }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", default-features = false, git = "https://github.com/bifrost-platform/polkadot-sdk", branch = "bifrost-polkadot-v1.12.0" }
# Substrate Primitives
sp-core = { git = "https://github.com/bifrost-platform/polkadot-sdk", default-features = false, branch = "bifrost-polkadot-v1.12.0" }
sp-application-crypto = { git = "https://github.com/bifrost-platform/polkadot-sdk", default-features = false, branch = "bifrost-polkadot-v1.12.0" }
# Substrate Builds
substrate-build-script-utils = { git = "https://github.com/bifrost-platform/polkadot-sdk", default-features = false, branch = "bifrost-polkadot-v1.12.0" }
[profile.production]
inherits = "release"