2025-07-25 19:42:29 +03:00
|
|
|
[package]
|
|
|
|
|
name = "integration_tests"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
anyhow.workspace = true
|
|
|
|
|
env_logger.workspace = true
|
|
|
|
|
log.workspace = true
|
|
|
|
|
actix.workspace = true
|
|
|
|
|
actix-web.workspace = true
|
2025-10-03 15:59:27 -03:00
|
|
|
base64.workspace = true
|
2025-07-25 19:42:29 +03:00
|
|
|
tokio.workspace = true
|
2025-07-30 14:01:40 +03:00
|
|
|
hex.workspace = true
|
2025-07-31 14:40:23 +03:00
|
|
|
tempfile.workspace = true
|
2025-10-06 16:07:22 -03:00
|
|
|
borsh.workspace = true
|
2025-07-25 19:42:29 +03:00
|
|
|
|
2025-09-19 15:03:01 +03:00
|
|
|
nssa-core = { path = "../nssa/core", features = ["host"] }
|
|
|
|
|
|
2025-10-28 10:41:40 +02:00
|
|
|
proc_macro_test_attribute = { path = "./proc_macro_test_attribute" }
|
2025-10-22 13:55:35 +03:00
|
|
|
|
2025-07-25 19:42:29 +03:00
|
|
|
[dependencies.clap]
|
|
|
|
|
features = ["derive", "env"]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies.sequencer_core]
|
|
|
|
|
path = "../sequencer_core"
|
2025-09-04 17:05:12 -03:00
|
|
|
features = ["testnet"]
|
2025-07-25 19:42:29 +03:00
|
|
|
|
|
|
|
|
[dependencies.sequencer_runner]
|
|
|
|
|
path = "../sequencer_runner"
|
|
|
|
|
|
2025-08-07 14:07:34 +03:00
|
|
|
[dependencies.wallet]
|
|
|
|
|
path = "../wallet"
|
2025-07-25 19:42:29 +03:00
|
|
|
|
|
|
|
|
[dependencies.common]
|
|
|
|
|
path = "../common"
|
2025-09-15 18:35:41 -03:00
|
|
|
|
|
|
|
|
[dependencies.nssa]
|
|
|
|
|
path = "../nssa"
|
2025-10-10 17:51:22 -03:00
|
|
|
features = ["no_docker"]
|
2025-10-23 16:23:47 -03:00
|
|
|
|
|
|
|
|
[dependencies.key_protocol]
|
|
|
|
|
path = "../key_protocol"
|