Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ debug = true
lto = true
overflow-checks = true
panic = "abort"
strip = true
opt-level = "z"


[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated typos I noticed but not really worth their own PR IMO

Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<code>doge example.net MX</code> ...looking up MX records instead
<code>doge example.net MX @1.1.1.1</code> ...using a specific nameserver instead
<code>doge example.net MX @1.1.1.1 -T</code> ...using TCP rather than UDP
<code>doge exapple.net MX @1.1.1.1 -p 69</code> ...using a nonstandard port
<code>doge example.net MX @1.1.1.1 -p 69</code> ...using a nonstandard port
<code>doge -q example.net -t MX -n 1.1.1.1 -T</code> As above, but using explicit arguments
</pre>

Expand Down Expand Up @@ -90,7 +90,7 @@
<pre>
<code>Homebrew: brew install doge
Cargo: cargo install dns-doge
ArchLinux: yay -S dns_doge
ArchLinux: yay -S dns-doge
Ubuntu/Debian: Comming Soon
RHEL/Fedora/Cenos: Publishing rpm</code>
</pre>
Expand Down
3 changes: 1 addition & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,13 @@ build:

build-release:
@cargo build --release --verbose
# @strip "${CARGO_TARGET_DIR:-target}/release/doge"

build-time:
@cargo +nightly clean
@cargo +nightly build -Z timings

build-quick:
@cargo build --no-default-features
@cargo build --no-default-features

# Check the compilation
check:
Expand Down