| Crates.io | backlog-client |
| lib.rs | backlog-client |
| version | 0.1.1 |
| created_at | 2025-08-13 09:16:07.452741+00 |
| updated_at | 2025-08-13 09:16:07.452741+00 |
| description | Backlog Client For Rust |
| homepage | https://github.com/katayama8000/backlog-client-rust/blob/main/README.md |
| repository | https://github.com/katayama8000/backlog-client |
| max_upload_size | |
| id | 1793457 |
| size | 68,888 |
A Rust client library for the Backlog API
This project provides a Rust client library for easily accessing the Nulab Backlog API.
use backlog_client::{BacklogClient, Result};
#[tokio::main]
async fn main() -> Result<()> {
// Initialize the client with your Backlog space URL and API key
let client = BacklogClient::new("https://yourspace.backlog.com", "your_api_key");
// Get space information
let space = client.get_space().await?;
println!("Space: {}", space.name);
Ok(())
}
TODO
For a complete list of supported Backlog API endpoints, see API.md.
use backlog_client::{BacklogClient, Result};
#[tokio::main]
async fn main() -> Result<()> {
let client = BacklogClient::new("https://yourspace.backlog.com", "your_api_key");
let space = client.get_space().await?;
println!("Space: {}", space.name);
Ok(())
}
MIT License
Pull requests and issue reports are welcome.