|
| 1 | +[package] |
| 2 | +authors = { workspace = true } |
| 3 | +description = "AXONE verifiable credential contract built with Abstract SDK." |
| 4 | +edition = { workspace = true } |
| 5 | +homepage = { workspace = true } |
| 6 | +keywords = { workspace = true } |
| 7 | +license = { workspace = true } |
| 8 | +name = "axone-vc" |
| 9 | +repository = { workspace = true } |
| 10 | +rust-version = { workspace = true } |
| 11 | +version = "0.1.0" |
| 12 | + |
| 13 | +exclude = ["contract.wasm", "hash.txt"] |
| 14 | + |
| 15 | +[lib] |
| 16 | +crate-type = ["cdylib", "rlib"] |
| 17 | + |
| 18 | +[[bin]] |
| 19 | +name = "schema" |
| 20 | +required-features = ["schema"] |
| 21 | + |
| 22 | +[[bin]] |
| 23 | +name = "publish" |
| 24 | +required-features = ["daemon-bin"] |
| 25 | + |
| 26 | +[[bin]] |
| 27 | +name = "install" |
| 28 | +required-features = ["daemon-bin"] |
| 29 | + |
| 30 | +[features] |
| 31 | +daemon-bin = [ |
| 32 | + "cw-orch/daemon", |
| 33 | + "dep:clap", |
| 34 | + "dep:abstract-client", |
| 35 | + "dep:axone-networks", |
| 36 | + "dep:dotenv", |
| 37 | + "dep:env_logger", |
| 38 | + "dep:log", |
| 39 | +] |
| 40 | +default = ["export"] |
| 41 | +export = [] |
| 42 | +library = [] |
| 43 | +schema = ["abstract-app/schema"] |
| 44 | + |
| 45 | +[dependencies] |
| 46 | +abstract-app.workspace = true |
| 47 | +abstract-client = { workspace = true, optional = true } |
| 48 | +abstract-interface.workspace = true |
| 49 | +axone-networks = { path = "../../packages/axone-networks", version = "0.1.0", optional = true } |
| 50 | +bech32 = "0.11.0" |
| 51 | +clap = { workspace = true, optional = true, features = ["derive"] } |
| 52 | +const_format.workspace = true |
| 53 | +cosmwasm-schema.workspace = true |
| 54 | +cosmwasm-std.workspace = true |
| 55 | +cw-orch.workspace = true |
| 56 | +cw-storage-plus.workspace = true |
| 57 | +dotenv = { workspace = true, optional = true } |
| 58 | +env_logger = { workspace = true, optional = true } |
| 59 | +log = { workspace = true, optional = true } |
| 60 | +serde = { workspace = true, features = ["derive"] } |
| 61 | +thiserror.workspace = true |
| 62 | + |
| 63 | +[dev-dependencies] |
| 64 | +abstract-app = { workspace = true, features = ["test-utils"] } |
| 65 | +abstract-client.workspace = true |
| 66 | +axone-vc = { path = "." } |
| 67 | +serde.workspace = true |
| 68 | + |
| 69 | +[package.metadata.cargo-machete] |
| 70 | +ignored = ["serde"] |
0 commit comments