fixed readme for crates.io

This commit is contained in:
Ritesh Chitlangi 2021-07-27 04:17:16 +08:00
parent 7edf02fb44
commit 6a6470d881
1 changed files with 4 additions and 4 deletions

View File

@ -39,15 +39,15 @@ usually located at `$HOME/.config` or defined by the `XDG_CONFIG_HOME` environme
An example config looks like this:
```toml
[registry.verisign
[registry.verisign]
host = 'epp.verisign-grs.com'
port = 700
username = 'username'
password = 'password'
# service extensions
ext_uris = [
ext_uris = []
[registry.verisign.tls_files
[registry.verisign.tls_files]
# the full client certificate chain in PEM format
cert_chain = '/path/to/certificate/chain/pemfile'
# the RSA private key for your certificate
@ -56,7 +56,7 @@ key = '/path/to/private/key/pemfile'
## Operation
Once the config is set correctly, you can create a mut variable of type [`EppClient`
Once the config is set correctly, you can create a mut variable of type `EppClient`
with the domain registry
```rust