DNSimple Rust Client
A Rust client for the DNSimple API v2.
Requirements
- Rust: 1.86+
- An activated DNSimple account
Installation
Add this to your Cargo.toml:
[]
= "0.1"
Usage
use ;
let client = new_client;
let identity_response = client.identity.whoami.unwrap.data.unwrap;
Configuration
Sandbox Environment
We highly recommend testing against our sandbox environment before using our production environment. This will allow you to avoid real purchases, live charges on your credit card, and reduce the chance of your running up against rate limits.
The client supports both the production and sandbox environment. To switch to sandbox pass the sandbox API host setting the
sandbox option to true when you construct the client:
use ;
let client = new_client;
let identity_response = client.identity.whoami.unwrap.data.unwrap;
You will need to ensure that you are using an access token created in the sandbox environment. Production tokens will not work in the sandbox environment.
Setting a custom User-Agent header
You can customize the User-Agent header for the calls made to the DNSimple API:
use ;
let mut client = new_client;
client.set_user_agent;
The value you provide will be prepended to the default User-Agent the client uses. For example, if you use my-app/1.0, the final header value will be my-app/1.0 dnsimple-rust/0.1.0 (note that it will vary depending on the client version).
Documentation
- dnsimple-rust crates.io
- DNSimple API documentation
- DNSimple API examples repository
- DNSimple support documentation
Contributing
Contributions are welcome! Please feel free to submit issues and pull requests. See CONTRIBUTING.md for guidelines.
Changelog
See CHANGELOG.md for details.
License
Copyright (c) 2021-2026 DNSimple Corporation. This is Free Software distributed under the MIT License.