[package] name = "cw-orch-publish-test" version = "0.11.2" authors = { workspace = true } edition = { workspace = true } license = { workspace = true } repository = { workspace = true } description = "Scripting library for deploying and interacting with CosmWasm smart-contracts" keywords = ["cosmwasm", "blockchain"] categories = ["development-tools"] readme = "../README.md" exclude = [".env"] [[example]] name = "ica-demo" required-features = ["interchain"] # Interact with local/remote daemons over gRPC [features] # enable node-backed tests (ensure Docker is running) # run with `cargo test --jobs 1 --features node-tests` default = ["interchain"] node-tests = ["daemon"] # enable the optional dependencies daemon = ["dep:ibc-chain-registry", "dep:ibc-relayer-types", "dep:tokio", "dep:tonic", "dep:secp256k1", "dep:reqwest", "dep:base64", "dep:hkd32", "dep:rand_core", "dep:ed25519-dalek", "dep:cosmrs", "dep:derive_builder", "dep:eyre", "dep:chrono", "dep:base16", "dep:ripemd", "dep:ring", "dep:hex", "dep:bitcoin", "dep:prost", "dep:log4rs", "dep:diff-struct", "dep:futures-util", "cw-orch-contract-derive/propagate_daemon"] # Interact with interchaintest's docker nodes interchain = ["daemon", "dep:bollard", "dep:async-recursion"] [dependencies] # Default deps cw-orch-contract-derive = { path = "../packages/cw-orch-contract-derive", version = "0.11" } cw-orch-fns-derive = { path = "../packages/cw-orch-fns-derive", version = "0.11" } cosmwasm-std = { workspace = true } cw-multi-test = { workspace = true } anyhow = { workspace = true } serde = { workspace = true } schemars = "0.8.10" log = "0.4.14" serde_json = "1.0.79" thiserror = { version = "1.0.21" } # Daemon deps sha256 = { version = "1.1.1" } prost = { version = "0.11", optional = true } bitcoin = { version = "0.30.0", optional = true } hex = { version = "0.4.3", optional = true } ripemd = { version = "0.1.3", optional = true } ibc-chain-registry = { version = "0.23.0", optional = true } ibc-relayer-types = { version = "0.23.0", optional = true } tokio = { version = "1.4", features = ["full"], optional = true } tonic = { version = "0.9.2", optional = true, features = ["tls", "tls-roots"] } secp256k1 = { version = "0.27.0", default-features = false, optional = true } reqwest = { version = "0.11.9", optional = true } base64 = { version = "0.21.0", optional = true } hkd32 = { version = "0.7.0", features = [ "bip39", "mnemonic", "bech32", ], optional = true } rand_core = { version = "0.6.4", default-features = false, optional = true } ed25519-dalek = { version = "1", features = ["serde"], optional = true } eyre = { version = "0.6", optional = true } cosmrs = { version = "0.14.0", features = [ "dev", "cosmwasm", "grpc", ], optional = true } chrono = { version = "0.4", optional = true } base16 = { version = "0.2.1", optional = true } derive_builder = { version = "0.12.0", optional = true } ring = { version = "0.16.20", optional = true } diff-struct = { version = "0.5", optional = true } # Interchain deps bollard = { version = "0.14.0", optional = true } futures-util = { version = "0.3.28", optional = true } log4rs = { version = "1", optional = true } cosmwasm-schema = "1.2.5" async-recursion = { version = "1.0.4", optional = true } futures = "0.3.28" cosmos-sdk-proto = "0.19.0" dotenv = { version = "0.15.0" } env_logger = { version = "0.10.0" } json-patch = "1.0.0" [dev-dependencies] simple-ica-controller = { git = "https://github.com/confio/cw-ibc-demo.git", rev = "ce31127" } simple-ica-host = { git = "https://github.com/confio/cw-ibc-demo.git", rev = "ce31127" } cw-orch = { features = ["daemon"], path = "." } uid = "0.1.7" cw20 = { git = "https://github.com/AbstractSDK/cw-plus.git" } cw20-base = { git = "https://github.com/AbstractSDK/cw-plus.git" } cosmwasm-schema = "1.2" tokio-test = "0.4.2" speculoos = "0.11.0" ctor = "0.2.0" duct = "0.13" serial_test = "2.0.0" mock-contract = { path = "../contracts/mock_contract", features = ["cw-orch"] }