| Crates.io | acme-validation-propagation |
| lib.rs | acme-validation-propagation |
| version | 0.1.8 |
| created_at | 2023-11-08 10:13:46.585706+00 |
| updated_at | 2024-11-06 09:10:03.515115+00 |
| description | Waiting for propagation of acme validation record |
| homepage | |
| repository | https://github.com/paulusminus/acme-validation-propagation |
| max_upload_size | |
| id | 1028924 |
| size | 16,242 |
This library crate can be used to check if an acme challenge record is propagated to all authoritive nameservers.
use acme_validation_propagation::wait;
match wait("example.com", "89823875") {
Ok(_) => println!("Propagation finished"),
Err(error) => eprintln!("Error: {error}"),
}