41fb17a31b
* WIP adding derive(ToSchema) * Derive ToSchema for more types * ContractBuildInformation on /nym_contracts_detailed * rustfmt * Add cfg_attr * A bunch of annotations * Compiles with utoipa 5.2 * WIP * Post rebase fixes * Gitattributes to ignore .sqlx diffs * generate Sqlx schema files * Improvements * Move ecash schema out of ecash crate * Move redocly config to nym-api/ * Move redocly config to nym-api/ * Remove ErrorResponse * Move generated openapi spec to .gitignore * Include BSL licence * Remove utoipa from ecash toml file * Remove placeholder annotations * Chain-watcher rebase changes * Update licence info * Treat Scalar as String in OpenAPI
43 lines
1.3 KiB
TOML
43 lines
1.3 KiB
TOML
[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"]
|