Files
nym/tools/ts-rs-cli/Cargo.toml
T
Jędrzej Stuczyński 516561dcf9 Feature/wasm nyxd client (#3708)
* separated signing and nyxd-client features

* updated cosmrs to the most recent version

* using tendermint_rpc directly for the Client trait

* fixed rest of the codebase

* removed nyxd-client feature

* export more types

* clippy that seems to have been skipped in makefile
2023-07-26 15:49:45 +01:00

21 lines
848 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 = [
"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" ] }