[package]
edition = "2021"
name = "cardano-client-lib"
version = "0.1.0-pre6"
authors = ["bloxbean"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust bindings for Cardano Client Lib (CCL) via GraalVM native library"
homepage = "https://github.com/bloxbean/cardano-client-bindings"
documentation = "https://docs.rs/cardano-client-lib"
readme = "README.md"
keywords = [
"cardano",
"cardano-client",
"cardano-client-lib",
"blockchain",
]
categories = [
"api-bindings",
"cryptography::cryptocurrencies",
]
license = "MIT"
repository = "https://github.com/bloxbean/cardano-client-bindings"
[features]
default = []
providers = ["dep:ureq"]
[lib]
name = "ccl"
path = "src/lib.rs"
[[example]]
name = "account"
path = "examples/account.rs"
[[example]]
name = "evaluator"
path = "examples/evaluator.rs"
required-features = ["providers"]
[[example]]
name = "primitives"
path = "examples/primitives.rs"
[[example]]
name = "transaction"
path = "examples/transaction.rs"
[[test]]
name = "account_test"
path = "tests/account_test.rs"
[[test]]
name = "address_test"
path = "tests/address_test.rs"
[[test]]
name = "crypto_test"
path = "tests/crypto_test.rs"
[[test]]
name = "governance_test"
path = "tests/governance_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "intents_integration_test"
path = "tests/intents_integration_test.rs"
[[test]]
name = "intents_test"
path = "tests/intents_test.rs"
[[test]]
name = "plutus_test"
path = "tests/plutus_test.rs"
[[test]]
name = "providers_test"
path = "tests/providers_test.rs"
[[test]]
name = "quicktx_integration_test"
path = "tests/quicktx_integration_test.rs"
[[test]]
name = "transaction_test"
path = "tests/transaction_test.rs"
[[test]]
name = "version_sync_test"
path = "tests/version_sync_test.rs"
[[test]]
name = "wallet_test"
path = "tests/wallet_test.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.ureq]
version = "2"
features = ["json"]
optional = true
[dev-dependencies.ureq]
version = "2"
features = ["json"]