[package] name = "xdomain" version = "0.1.0" authors = ["xdomain "] edition = "2021" # Required fields description = "xdomain name service package to interact with smart contracts" license = "MIT" # or any other appropriate license, e.g., "Apache-2.0" # Optional but recommended repository = "https://github.com/sitespotai/xdomain-package.git" keywords = ["xdomain", "rust", "crate"] categories = ["command-line-utilities", "development-tools"] exclude = [ # Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication. "contract.wasm", "hash.txt", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] crate-type = ["cdylib", "rlib"] [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 = { version = "0.16.2" } cosmwasm-storage = { version = "0.16.0" } cw-storage-plus = "0.8.0" cw0 = "0.9.1" cw2 = "0.8.1" cw721 = "0.9.1" schemars = "0.8.3" serde = { version = "1.0.127", default-features = false, features = ["derive"] } tiny-keccak = "1.4.2" thiserror = { version = "1.0.26" } hex = "0.4.3" base64 = "0.13.0" chrono = "0.4.19" unicode-segmentation = "1.8.0" [dev-dependencies] cosmwasm-schema = { version = "0.16.0" }