[package]
edition = "2021"
name = "splitnow"
version = "1.0.0"
authors = ["SplitOTC, Ltd"]
build = false
exclude = [
".env",
"target/",
".git/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust SDK for SplitNOW, the multi-wallet instant crypto exchange"
readme = "README.md"
keywords = [
"crypto",
"exchange",
"api",
"blockchain",
]
categories = ["api-bindings"]
license = "Unlicense"
repository = "https://github.com/splitnow/rust-sdk"
[lib]
name = "splitnow"
path = "src/lib.rs"
[[example]]
name = "sol_to_sol"
path = "examples/sol_to_sol.rs"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.dotenvy]
version = "0.15"