-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (66 loc) · 2.22 KB
/
Cargo.toml
File metadata and controls
70 lines (66 loc) · 2.22 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
65
66
67
68
69
70
[package]
name = "partner-chains-db-sync-data-sources"
version.workspace = true
license = "Apache-2.0"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Db-Sync-based implementations of all data sources used by Partner Chains components"
[lints]
workspace = true
[dependencies]
sqlx = { workspace = true }
db-sync-sqlx = { workspace = true }
tokio = { workspace = true, features = ["full"] }
futures = { workspace = true }
chrono = { workspace = true }
hex = { workspace = true }
hex-literal = { workspace = true }
itertools = { workspace = true }
sidechain-domain = { workspace = true, features = ["std", "serde"] }
serde = { workspace = true }
serde_json = { workspace = true }
bigdecimal = { workspace = true }
async-trait = { workspace = true }
num-bigint = { workspace = true }
log = { workspace = true }
thiserror = { workspace = true }
blake2b_simd = { workspace = true }
figment = { workspace = true }
derive-new = { workspace = true }
lru = { workspace = true }
sp-timestamp = { workspace = true, features = ["std"] }
sp-governed-map = { workspace = true, features = ["std"], optional = true }
sidechain-mc-hash = { workspace = true, optional = true }
pallet-sidechain-rpc = { workspace = true, optional = true }
authority-selection-inherents = { workspace = true, features = [
"std",
], optional = true }
cardano-serialization-lib = { workspace = true }
partner-chains-data-source-metrics = { workspace = true }
partner-chains-plutus-data = { workspace = true }
sp-block-participation = { workspace = true, features = [
"std",
], optional = true }
sp-partner-chains-bridge = { workspace = true, optional = true, features = [
"std",
] }
[dev-dependencies]
tokio-test = "0.4.3"
ctor = "0.5.0"
testcontainers-modules = { version = "0.13.0", features = [
"blocking",
"postgres",
] }
pretty_assertions = { workspace = true }
paste = { workspace = true }
[features]
default = []
block-source = []
candidate-source = ["authority-selection-inherents"]
governed-map = ["sp-governed-map"]
mc-hash = ["sidechain-mc-hash", "block-source"]
sidechain-rpc = ["pallet-sidechain-rpc", "block-source"]
block-participation = ["sp-block-participation"]
bridge = ["sp-partner-chains-bridge"]