[package] name = "nym-types" version = "1.0.0" description = "Nym common types" authors.workspace = true edition = "2021" rust-version.workspace = true license.workspace = true [dependencies] base64 = { workspace = true } eyre = { workspace = true } hmac = { workspace = true } itertools = { workspace = true } log = { workspace = true } reqwest = { workspace = true } schemars = { workspace = true } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } sha2 = { workspace = true } strum = { workspace = true, features = ["derive"] } thiserror = { workspace = true } ts-rs = { workspace = true } url = { workspace = true } utoipa = { workspace = true } x25519-dalek = { workspace = true, features = ["static_secrets"] } cosmwasm-std = { workspace = true } cosmrs = { workspace = true } nym-validator-client = { path = "../../common/client-libs/validator-client" } nym-mixnet-contract-common = { path = "../../common/cosmwasm-smart-contracts/mixnet-contract" } nym-vesting-contract-common = { path = "../../common/cosmwasm-smart-contracts/vesting-contract" } nym-config = { path = "../../common/config" } nym-crypto = { path = "../../common/crypto", features = ["asymmetric"] } [dev-dependencies] tempfile = { workspace = true } [features] default = [] generate-ts = ["nym-mixnet-contract-common/generate-ts"]