[package] name = "croncat-agents" version = { workspace = true } authors = { workspace = true } edition = "2021" repository = "https://github.com/CronCats/cw-croncat" description = "CronCat agent smart contract" license = { workspace = true } [lib] crate-type = ["cdylib", "rlib"] [profile.release] codegen-units = 1 opt-level = 3 debug = false rpath = false lto = true debug-assertions = false panic = 'abort' incremental = false overflow-checks = true [features] # for more explicit tests, cargo test --features=backtraces backtraces = ["cosmwasm-std/backtraces"] # use library feature to disable all instantiate/execute/query exports library = [] [dependencies] cosmwasm-std = { workspace = true } cosmwasm-schema = { workspace = true } croncat-sdk-agents = { workspace = true } croncat-sdk-tasks = { workspace = true } croncat-sdk-core = { workspace = true } croncat-sdk-manager = { workspace = true } croncat-sdk-factory = { workspace = true } cw-storage-plus = { workspace = true } thiserror = { workspace = true } serde = { workspace = true, default-features = false, features = ["derive"] } cw2 = { workspace = true } cw-utils = { workspace = true } [dev-dependencies] # cw-multi-test = { workspace = true } # anyhow = { workspace = true } # croncat-manager = { workspace = true } # croncat-tasks = { workspace = true } # croncat-factory = { workspace = true } # croncat-sdk-factory = { workspace = true }