[[bin]]
name = "misc_test"
path = "src/bin/misc_test.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
optional = true
version = "0.22.1"
[dependencies.chrono]
features = ["serde"]
version = "0.4.39"
[dependencies.derive_builder]
version = "0.20.2"
[dependencies.futures]
version = "0.3.31"
[dependencies.governor]
version = "0.8.0"
[dependencies.hex]
optional = true
version = "0.4.3"
[dependencies.reqwest]
features = ["json", "rustls-tls"]
version = "0.12.12"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_qs]
version = "0.13.0"
[dependencies.thiserror]
version = "2.0.11"
[dependencies.tokio]
features = ["full"]
version = "1.43.0"
[dependencies.tracing]
version = "0.1.41"
[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3.19"
[dependencies.url]
version = "2.5.4"
[dependencies.urlencoding]
version = "2.1.3"
[dev-dependencies.mockito]
version = "1.6.1"
[dev-dependencies.pretty_assertions]
version = "1.4.1"
[dev-dependencies.rand]
version = "0.9.0"
[dev-dependencies.test-log]
features = ["trace"]
version = "0.2.17"
[dev-dependencies.tokio-test]
version = "0.4.4"
[dev-dependencies.wiremock]
version = "0.6.2"
[features]
default = ["rustls-tls"]
full = ["base64", "hex"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]
[lib]
doc = true
doctest = true
name = "koios_sdk"
path = "src/lib.rs"
[package]
authors = ["Mert Köklü <kklumert@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A Rust SDK for the Koios Cardano API"
documentation = "https://docs.rs/koios-sdk"
edition = "2021"
keywords = ["cardano", "sdk", "koios", "api"]
license = "Apache-2.0"
name = "koios-sdk"
readme = "README.md"
repository = "https://github.com/justmert/koios.rs"
version = "0.1.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[profile.dev.package."*"]
opt-level = 3
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = true
[[test]]
name = "account_tests"
path = "tests/account_tests.rs"
[[test]]
name = "address_tests"
path = "tests/address_tests.rs"
[[test]]
name = "asset_tests"
path = "tests/asset_tests.rs"
[[test]]
name = "block_tests"
path = "tests/block_tests.rs"
[[test]]
name = "epoch_tests"
path = "tests/epoch_tests.rs"
[[test]]
name = "governance_tests"
path = "tests/governance_tests.rs"
[[test]]
name = "network_tests"
path = "tests/network_tests.rs"
[[test]]
name = "ogmios_tests"
path = "tests/ogmios_tests.rs"
[[test]]
name = "pool_tests"
path = "tests/pool_tests.rs"
[[test]]
name = "script_tests"
path = "tests/script_tests.rs"
[[test]]
name = "transaction_tests"
path = "tests/transaction_tests.rs"