diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..9a3f7d0 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +open_collective: dnscrypt diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..725db19 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,37 @@ +name: Rust + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@master + - uses: hecrj/setup-rust-action@master + with: + rust-version: nightly + - name: Check Cargo availability + run: cargo --version + - name: Check Rustup default toolchain + run: rustup default | grep nightly + - name: Install cargo-deb + run: cargo install --debug cargo-deb + - name: Build + run: | + echo 'lto = "fat"' >> Cargo.toml + env RUSTFLAGS="-C link-arg=-s" cargo build --release + mkdir doh-proxy + mv target/release/doh-proxy doh-proxy/ + cp README.md doh-proxy/ + - name: Debian package + run: | + cargo deb + - uses: actions/upload-artifact@master + with: + name: doh-proxy-linux-x86_64 + path: doh-proxy + - uses: actions/upload-artifact@master + with: + name: debian + path: target/debian diff --git a/Cargo.toml b/Cargo.toml index 4c4118d..30a39d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,6 +9,7 @@ homepage = "https://github.com/jedisct1/rust-doh" repository = "https://github.com/jedisct1/rust-doh" categories = ["asynchronous", "network-programming","command-line-utilities"] edition = "2018" +readme = "README.md" [features] default = [] @@ -26,7 +27,20 @@ tokio-current-thread = "0.1.6" tokio-timer = "0.2.11" tokio-tls = { version = "0.2.1", optional = true } +[package.metadata.deb] +extended-description = """\ +A fast and secure DoH (DNS-over-HTTPS) server written in Rust.""" +assets = [ + ["target/release/doh-proxy", "usr/bin/", "755"], + ["README.md", "usr/share/doc/doh-proxy/README.md", "644"] +] +section = "network" +depends = "$auto" +priority = "optional" + [profile.release] +codegen-units = 1 +incremental = false lto = true -panic = "abort" opt-level = 3 +panic = "abort" diff --git a/README.md b/README.md index c7a77fc..1378d9b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # doh-proxy -A DNS-over-HTTP server proxy in Rust. Add a webserver and you get DNS-over-HTTPS, which is actually DNS-over-HTTP/2. +A fast and secure DoH (DNS-over-HTTPS) server written in Rust. ## Installation