docs.rs failed to build marketsurge-client-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Async Rust client for the MarketSurge GraphQL API.
This project is unofficial and is not affiliated with, endorsed by, or sponsored by MarketSurge.
Quick start
use marketsurge_client::{Client, ClientConfig};
# fn main() -> marketsurge_client::Result<()> {
let config = ClientConfig::default();
let client = Client::new(config)?;
// Use any endpoint method, e.g. client.chart_market_data(...).await
# Ok(())
# }
An agent crate providing higher-level workflows is planned separately.