mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-02 13:23:10 +00:00
45 lines
869 B
TOML
45 lines
869 B
TOML
[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
|
|
base64.workspace = true
|
|
tokio.workspace = true
|
|
hex.workspace = true
|
|
tempfile.workspace = true
|
|
borsh.workspace = true
|
|
|
|
nssa-core = { path = "../nssa/core", features = ["host"] }
|
|
|
|
proc_macro_test_attribute = { path = "./proc_macro_test_attribute" }
|
|
|
|
[dependencies.clap]
|
|
features = ["derive", "env"]
|
|
workspace = true
|
|
|
|
[dependencies.sequencer_core]
|
|
path = "../sequencer_core"
|
|
features = ["testnet"]
|
|
|
|
[dependencies.sequencer_runner]
|
|
path = "../sequencer_runner"
|
|
|
|
[dependencies.wallet]
|
|
path = "../wallet"
|
|
|
|
[dependencies.common]
|
|
path = "../common"
|
|
|
|
[dependencies.nssa]
|
|
path = "../nssa"
|
|
features = ["no_docker"]
|
|
|
|
[dependencies.key_protocol]
|
|
path = "../key_protocol"
|