updated README with doc link

This commit is contained in:
Ritesh Chitlangi 2021-07-27 12:28:04 +08:00
parent 46af9bc5f7
commit fdd5397355
2 changed files with 58 additions and 38 deletions

View File

@ -1,5 +1,7 @@
# EPP (Extensible Provisioning Protocol) Library for Domain Registration and Management # EPP (Extensible Provisioning Protocol) Library for Domain Registration and Management
[![Documentation](https://docs.rs/epp-client/badge.svg)](https://docs.rs/epp-client/)
## Description ## Description
epp-client is a client library written in Rust for Internet domain registration and management for domain registrars. epp-client is a client library written in Rust for Internet domain registration and management for domain registrars.
@ -7,28 +9,36 @@ epp-client is a client library written in Rust for Internet domain registration
It supports the following basic Domain, Contact, Host, and Message management calls, with plans to add more calls It supports the following basic Domain, Contact, Host, and Message management calls, with plans to add more calls
and other EPP extensions in the future, and to eventually be RFC compliant with the EPP protocol. and other EPP extensions in the future, and to eventually be RFC compliant with the EPP protocol.
- Domain Check - `EppDomainCheck` - Domain Check
- Domain Create - `EppDomainCreate` - Domain Create
- Domain Info - `EppDomainInfo` - Domain Info
- Domain Update - `EppDomainUpdate` - Domain Update
- Domain Delete - `EppDomainDelete` - Domain Delete
- Domain Renew - `EppDomainRenew` - Domain Renew
- Domain Transfer - `EppDomainTransferRequest` - Domain Transfer
- Contact Check - `EppContactCheck` - Contact Check
- Contact Create - `EppContactCreate` - Contact Create
- Contact Info - `EppContactInfo` - Contact Info
- Contact Update - `EppContactUpdate` - Contact Update
- Contact Delete - `EppContactDelete` - Contact Delete
- Host Check - `EppHostCheck` - Host Check
- Host Create - `EppHostCreate` - Host Create
- Host Info - `EppHostInfo` - Host Info
- Host Update - `EppHostUpdate` - Host Update
- Host Delete - `EppHostDelete` - Host Delete
- Message Poll - `EppMessagePoll` - Message Poll
- Message Ack - `EppMessageAck` - Message Ack
## Usage
Just add the following to your project's `Cargo.toml`
```toml
epp-client = "0.1.2"
```
## Prerequisites ## Prerequisites

View File

@ -1,5 +1,7 @@
# EPP (Extensible Provisioning Protocol) Library for Domain Registration and Management # EPP (Extensible Provisioning Protocol) Library for Domain Registration and Management
[![Documentation](https://docs.rs/epp-client/badge.svg)](https://docs.rs/epp-client/)
## Description ## Description
epp-client is a client library written in Rust for Internet domain registration and management for domain registrars. epp-client is a client library written in Rust for Internet domain registration and management for domain registrars.
@ -7,28 +9,36 @@ epp-client is a client library written in Rust for Internet domain registration
It supports the following basic Domain, Contact, Host, and Message management calls, with plans to add more calls It supports the following basic Domain, Contact, Host, and Message management calls, with plans to add more calls
and other EPP extensions in the future, and to eventually be RFC compliant with the EPP protocol. and other EPP extensions in the future, and to eventually be RFC compliant with the EPP protocol.
- Domain Check - `EppDomainCheck` - Domain Check
- Domain Create - `EppDomainCreate` - Domain Create
- Domain Info - `EppDomainInfo` - Domain Info
- Domain Update - `EppDomainUpdate` - Domain Update
- Domain Delete - `EppDomainDelete` - Domain Delete
- Domain Renew - `EppDomainRenew` - Domain Renew
- Domain Transfer - `EppDomainTransferRequest` - Domain Transfer
- Contact Check - `EppContactCheck` - Contact Check
- Contact Create - `EppContactCreate` - Contact Create
- Contact Info - `EppContactInfo` - Contact Info
- Contact Update - `EppContactUpdate` - Contact Update
- Contact Delete - `EppContactDelete` - Contact Delete
- Host Check - `EppHostCheck` - Host Check
- Host Create - `EppHostCreate` - Host Create
- Host Info - `EppHostInfo` - Host Info
- Host Update - `EppHostUpdate` - Host Update
- Host Delete - `EppHostDelete` - Host Delete
- Message Poll - `EppMessagePoll` - Message Poll
- Message Ack - `EppMessageAck` - Message Ack
## Usage
Just add the following to your project's `Cargo.toml`
```toml
epp-client = "0.1.2"
```
## Prerequisites ## Prerequisites