[package]
edition = "2021"
rust-version = "1.70"
name = "mina-sdk"
version = "0.1.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",
]
categories = ["api-bindings"]
license = "Apache-2.0"
repository = "https://github.com/MinaProtocol/mina-sdk-rust"
[lib]
name = "mina_sdk"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.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.8"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[dev-dependencies.wiremock]
version = "0.6"