22 lines
913 B
TOML
22 lines
913 B
TOML
[package]
|
|
name = "ts-rs-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
ts-rs = { workspace = true }
|
|
walkdir = { workspace = true }
|
|
|
|
nym-validator-client = { path = "../../common/client-libs/validator-client", features = [
|
|
"generate-ts"
|
|
] }
|
|
nym-api-requests = { path = "../../nym-api/nym-api-requests", features = ["generate-ts"] }
|
|
nym-mixnet-contract-common = { path = "../../common/cosmwasm-smart-contracts/mixnet-contract", features = ["generate-ts"] }
|
|
nym-vesting-contract-common = { path = "../../common/cosmwasm-smart-contracts/vesting-contract", features = ["generate-ts"] }
|
|
nym-types = { path = "../../common/types", features = ["generate-ts"] }
|
|
nym-wallet-types = { path = "../../nym-wallet/nym-wallet-types", features = ["generate-ts"] }
|