mesmo 0.1.0-pre8

Rust bindings for Cardano Client Lib (CCL) via GraalVM native library
[package]
name = "mesmo"
version = "0.1.0-pre8"
edition = "2021"
description = "Rust bindings for Cardano Client Lib (CCL) via GraalVM native library"
license = "MIT"
repository = "https://github.com/bloxbean/mesmo"
homepage = "https://github.com/bloxbean/mesmo"
documentation = "https://docs.rs/mesmo"
readme = "README.md"
authors = ["bloxbean"]
keywords = ["cardano", "cardano-client", "cardano-client-lib", "blockchain"]
categories = ["api-bindings", "cryptography::cryptocurrencies"]

# Published and imported under one name: `cargo add mesmo`, `use mesmo::...`. The explicit [lib]
# name pins the import identifier so it survives any future change to the package name.
[lib]
name = "mesmo"

[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
# Only pulled in by the optional `providers` feature (chain-data provider helpers); the core
# offline build does not require an HTTP client.
ureq = { version = "2", features = ["json"], optional = true }

[features]
default = []
# Optional HTTP chain-data provider helpers (Yaci DevKit, Blockfrost).
providers = ["dep:ureq"]

[dev-dependencies]
ureq = { version = "2", features = ["json"] }

# The evaluator example uses build_with + a provider, which live behind the `providers` feature.
[[example]]
name = "evaluator"
required-features = ["providers"]