[package]
edition = "2021"
name = "polymesh-api-tester"
version = "0.10.2"
authors = ["Robert G. Jakabosky <robert@polymesh.network>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Polymesh Rust API tester"
homepage = "https://github.com/PolymeshAssociation/polymesh-api"
readme = false
keywords = [
"polymesh",
"blockchain",
"substrate",
"codegen",
"tester",
]
license = "Apache-2.0"
repository = "https://github.com/PolymeshAssociation/polymesh-api"
[features]
default = ["polymesh_v7"]
download_metadata = ["polymesh-api/download_metadata"]
polymesh_v7 = [
"polymesh-api/polymesh_v7",
"polymesh-api-client-extras/polymesh_v7",
]
polymesh_v8 = [
"polymesh-api/polymesh_v8",
"polymesh-api-client-extras/polymesh_v8",
]
signer_delay = []
[lib]
name = "polymesh_api_tester"
path = "src/lib.rs"
[[test]]
name = "create_secondary_keys"
path = "tests/create_secondary_keys.rs"
[[test]]
name = "create_venue"
path = "tests/create_venue.rs"
[[test]]
name = "simple_transfer"
path = "tests/simple_transfer.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.env_logger]
version = "0.11"
[dependencies.hex]
version = "0.4"
[dependencies.log]
version = "0.4"
[dependencies.polymesh-api]
version = "3.13.1"
features = [
"std",
"rpc",
"serde",
"v14",
]
default-features = false
[dependencies.polymesh-api-client-extras]
version = "3.6.4"
default-features = false
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.sp-core]
version = "36.1"
features = ["std"]
default-features = false
[dependencies.sp-keyring]
version = "41.0"
default-features = false
[dependencies.sp-runtime]
version = "41.1"
features = ["std"]
default-features = false
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"tls-native-tls",
"sqlite",
"macros",
]
default-features = false
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.19"
features = ["full"]
[dev-dependencies.anyhow]
version = "1.0"