84c1679973
* Add nym- prefix to nymcoconut * Add nym- prefix to validator-client * Add nym- prefix to gateway-requests * Add nym- prefix to mobile-storage * Add nym- prefix to gateway-client * Add nym- prefix to client-core * rustfmt
21 lines
863 B
TOML
21 lines
863 B
TOML
[package]
|
|
name = "ts-rs-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
ts-rs = "6.1.2"
|
|
walkdir = "2"
|
|
|
|
nym-validator-client = { path = "../../common/client-libs/validator-client", features = [
|
|
"nyxd-client", "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" ] }
|