Removed mentions of dedicated servers + Sulkta-runs-its-own-Koios claims from README + module doc-comments + Cargo.toml descriptions. aldabra works against any Koios endpoint — public api.koios.rest, preprod/preview, or operator-self-hosted — so the docs now reflect that capability neutrally instead of advertising our internal infra.
23 lines
684 B
TOML
23 lines
684 B
TOML
# aldabra-chain — pluggable backends for chain queries.
|
|
#
|
|
# A `ChainBackend` trait abstracts over Koios (HTTPS), Ogmios (WS/HTTP),
|
|
# or any future option. Phase 1 ships with a Koios implementation
|
|
# pointing at the public `api.koios.rest` instance by default.
|
|
#
|
|
# Submission paths land in phase 2. Read-only queries first.
|
|
|
|
[package]
|
|
name = "aldabra-chain"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license-file.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
|
|
[dependencies]
|
|
tokio = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
async-trait = "0.1"
|