-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (65 loc) · 1.86 KB
/
Cargo.toml
File metadata and controls
76 lines (65 loc) · 1.86 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
71
72
73
74
75
76
[package]
edition = "2021"
name = "integration-tests"
version = "0.1.0"
[lints]
workspace = true
[dependencies]
strata-asm-common.workspace = true
strata-asm-manifest-types.workspace = true
strata-asm-params = { workspace = true, features = ["arbitrary"] }
strata-asm-proto-administration.workspace = true
strata-asm-proto-bridge-v1.workspace = true
strata-asm-proto-checkpoint.workspace = true
strata-asm-spec.workspace = true
strata-asm-txs-admin = { workspace = true, features = ["test-utils"] }
strata-asm-txs-bridge-v1 = { workspace = true, features = ["test-utils"] }
strata-asm-worker.workspace = true
strata-bridge-types.workspace = true
strata-btc-types.workspace = true
strata-btc-verification.workspace = true
strata-checkpoint-types-ssz.workspace = true
strata-codec.workspace = true
strata-codec-utils.workspace = true
strata-crypto.workspace = true
strata-identifiers.workspace = true
strata-l1-envelope-fmt.workspace = true
strata-l1-txfmt.workspace = true
strata-merkle.workspace = true
strata-predicate.workspace = true
strata-tasks.workspace = true
strata-test-utils-arb.workspace = true
strata-test-utils-btcio.workspace = true
strata-test-utils-checkpoint.workspace = true
anyhow.workspace = true
bitcoin.workspace = true
bitcoin-bosd.workspace = true
bitcoind-async-client.workspace = true
borsh.workspace = true
corepc-node.workspace = true
rand.workspace = true
rand_chacha.workspace = true
ssz.workspace = true
tokio.workspace = true
[dev-dependencies]
[lib]
name = "integration_tests"
path = "lib.rs"
[[test]]
name = "asm_core"
path = "asm/core.rs"
[[test]]
name = "asm_admin"
path = "asm/admin.rs"
[[test]]
name = "asm_bridge"
path = "asm/bridge.rs"
[[test]]
name = "asm_admin_to_checkpoint"
path = "asm/admin_to_checkpoint.rs"
[[test]]
name = "asm_checkpoint"
path = "asm/checkpoint.rs"
[[test]]
name = "asm_bridge_to_checkpoint"
path = "asm/bridge_to_checkpoint.rs"