-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Phuong Dao
committed
Aug 11, 2024
1 parent
be12549
commit d662ec5
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# DNS resolver | ||
|
||
[![Build Status](https://github.com/da0p/dns_resolver/actions/workflows/ci.yml/badge.svg)](https://github.com/dns_resolver/dns_resolver/actions) | ||
|
||
Resolving a host name following [RFC-1035](https://datatracker.ietf.org/doc/html/rfc1035) | ||
|
||
# Installation | ||
|
||
- Download or clone the project | ||
- In the project directory, run | ||
```rust | ||
cargo build | ||
``` | ||
- In order to resolve a host name, run | ||
```rust | ||
cargo run -- HOST_NAME | ||
``` | ||
- In order to run the test | ||
```rust | ||
cargo test | ||
``` |