[package]
edition = "2021"
name = "mina-sdk"
version = "0.2.0"
authors = ["Mina Protocol <engineering@minaprotocol.com>"]
build = false
exclude = [
".github/",
"scripts/",
"schema/",
"tests/integration_tests.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust SDK for interacting with Mina Protocol nodes via GraphQL"
homepage = "https://github.com/MinaProtocol/mina-sdk-rust"
documentation = "https://docs.rs/mina-sdk"
readme = "README.md"
keywords = [
"mina",
"blockchain",
"graphql",
"cryptocurrency",
"web3",
]
categories = [
"api-bindings",
"cryptography::cryptocurrencies",
]
license = "Apache-2.0"
repository = "https://github.com/MinaProtocol/mina-sdk-rust"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "mina_sdk"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "currency_operations"
path = "examples/currency_operations.rs"
[[example]]
name = "custom_query"
path = "examples/custom_query.rs"
[[example]]
name = "error_handling"
path = "examples/error_handling.rs"
[[example]]
name = "node_monitoring"
path = "examples/node_monitoring.rs"
[[example]]
name = "send_payment"
path = "examples/send_payment.rs"
[[example]]
name = "stake_delegation"
path = "examples/stake_delegation.rs"
[[test]]
name = "client_tests"
path = "tests/client_tests.rs"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt",
"time",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.rand]
version = "0.10"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[dev-dependencies.wiremock]
version = "0.6"