Skip to content

Commit

Permalink
prepare 0.20.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bluejekyll authored and djc committed Dec 29, 2020
1 parent 58b9ec9 commit 140881b
Show file tree
Hide file tree
Showing 14 changed files with 67 additions and 67 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions bin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns"
version = "0.20.0-alpha.3"
version = "0.20.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -77,18 +77,18 @@ futures = { version = "0.3.5", default-features = false, features = ["std"] }
log = "0.4"
rustls = { version = "0.19", optional = true }
tokio = { version = "1.0", features = ["time"] }
trust-dns-client = { version = "0.20.0-alpha.3", path = "../crates/client" }
trust-dns-openssl = { version = "0.20.0-alpha.3", path = "../crates/openssl", optional = true }
trust-dns-proto = { version = "0.20.0-alpha.3", path = "../crates/proto" }
trust-dns-rustls = { version = "0.20.0-alpha.3", path = "../crates/rustls", optional = true }
trust-dns-server = { version = "0.20.0-alpha.3", path = "../crates/server" }
trust-dns-client = { version = "0.20.0", path = "../crates/client" }
trust-dns-openssl = { version = "0.20.0", path = "../crates/openssl", optional = true }
trust-dns-proto = { version = "0.20.0", path = "../crates/proto" }
trust-dns-rustls = { version = "0.20.0", path = "../crates/rustls", optional = true }
trust-dns-server = { version = "0.20.0", path = "../crates/server" }

[dev-dependencies]
env_logger = "0.8"
native-tls = "0.2"
regex = "1.3.4"
trust-dns-proto = { version = "0.20.0-alpha.3", path = "../crates/proto", features = ["testing"] }
trust-dns-native-tls = { version = "0.20.0-alpha.3", path = "../crates/native-tls" }
trust-dns-https = { version = "0.20.0-alpha.3", path = "../crates/https" }
trust-dns-resolver = { version = "0.20.0-alpha.3", path = "../crates/resolver" }
trust-dns-proto = { version = "0.20.0", path = "../crates/proto", features = ["testing"] }
trust-dns-native-tls = { version = "0.20.0", path = "../crates/native-tls" }
trust-dns-https = { version = "0.20.0", path = "../crates/https" }
trust-dns-resolver = { version = "0.20.0", path = "../crates/resolver" }
webpki-roots = "0.21"
6 changes: 3 additions & 3 deletions crates/async-std-resolver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-std-resolver"
version = "0.20.0-alpha.3"
version = "0.20.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -69,8 +69,8 @@ async-trait = "0.1.36"
futures-io = { version = "0.3.5", default-features = false, features = ["std"] }
futures-util = { version = "0.3.5", default-features = false, features = ["std"] }
pin-utils = "0.1.0"
trust-dns-resolver = { version = "0.20.0-alpha.3", path = "../resolver", default-features = false }
trust-dns-resolver = { version = "0.20.0", path = "../resolver", default-features = false }

[dev-dependencies]
async-std = { version = "1.6", features = ["attributes"] }
trust-dns-resolver = { version = "0.20.0-alpha.3", path = "../resolver", default-features = false, features = ["testing"] }
trust-dns-resolver = { version = "0.20.0", path = "../resolver", default-features = false, features = ["testing"] }
6 changes: 3 additions & 3 deletions crates/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-client"
version = "0.20.0-alpha.3"
version = "0.20.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -81,8 +81,8 @@ rustls = { version = "0.19", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
thiserror = "1.0.20"
tokio = { version = "1.0", features = ["rt"] }
trust-dns-https = { version = "0.20.0-alpha.3", path = "../https", optional = true }
trust-dns-proto = { version = "0.20.0-alpha.3", path = "../proto", features = ["dnssec"]}
trust-dns-https = { version = "0.20.0", path = "../https", optional = true }
trust-dns-proto = { version = "0.20.0", path = "../proto", features = ["dnssec"]}
webpki = { version = "0.21", optional = true }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions crates/https/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-https"
version = "0.20.0-alpha.3"
version = "0.20.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -59,8 +59,8 @@ thiserror = "1.0.20"
tokio = { version = "1.0", features = ["io-util", "net", "rt"] }
tokio-rustls = "0.22.0"
# disables default features, i.e. openssl...
trust-dns-proto = { version = "0.20.0-alpha.3", path = "../proto", features = ["tokio-runtime"], default-features = false }
trust-dns-rustls = { version = "0.20.0-alpha.3", path = "../rustls", default-features = false }
trust-dns-proto = { version = "0.20.0", path = "../proto", features = ["tokio-runtime"], default-features = false }
trust-dns-rustls = { version = "0.20.0", path = "../rustls", default-features = false }
webpki-roots = "0.21"
webpki = "0.21"

Expand Down
4 changes: 2 additions & 2 deletions crates/native-tls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-native-tls"
version = "0.20.0-alpha.3"
version = "0.20.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -53,7 +53,7 @@ native-tls = "0.2"
tokio = "1.0"
tokio-native-tls = "0.3.0"
# disables default features, i.e. openssl...
trust-dns-proto = { version = "0.20.0-alpha.3", path = "../proto", features = ["tokio-runtime"], default-features = false }
trust-dns-proto = { version = "0.20.0", path = "../proto", features = ["tokio-runtime"], default-features = false }

[dev-dependencies]

Expand Down
4 changes: 2 additions & 2 deletions crates/openssl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-openssl"
version = "0.20.0-alpha.3"
version = "0.20.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -52,7 +52,7 @@ futures-util = { version = "0.3.5", default-features = false, features = ["std"]
openssl = { version = "0.10", features = ["v102", "v110"] }
tokio-openssl = "0.6.0"
tokio = "1.0"
trust-dns-proto = { version = "0.20.0-alpha.3", path = "../proto", features = ["openssl"] }
trust-dns-proto = { version = "0.20.0", path = "../proto", features = ["openssl"] }

[dev-dependencies]
openssl = { version = "0.10", features = ["v102", "v110"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-proto"
version = "0.20.0-alpha.3"
version = "0.20.0"
edition = "2018"
authors = ["Benjamin Fry <benjaminfry@me.com>"]

Expand Down
12 changes: 6 additions & 6 deletions crates/resolver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-resolver"
version = "0.20.0-alpha.3"
version = "0.20.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -81,11 +81,11 @@ tokio = { version = "1.0", optional = true }
tokio-native-tls = { version = "0.3", optional = true }
tokio-openssl = { version = "0.6.0", optional = true }
tokio-rustls = { version = "0.22", optional = true }
trust-dns-https = { version = "0.20.0-alpha.3", path = "../https", optional = true }
trust-dns-native-tls = { version = "0.20.0-alpha.3", path = "../native-tls", optional = true }
trust-dns-openssl = { version = "0.20.0-alpha.3", path = "../openssl", optional = true }
trust-dns-proto = { version = "0.20.0-alpha.3", path = "../proto", default-features = false }
trust-dns-rustls = { version = "0.20.0-alpha.3", path = "../rustls", optional = true }
trust-dns-https = { version = "0.20.0", path = "../https", optional = true }
trust-dns-native-tls = { version = "0.20.0", path = "../native-tls", optional = true }
trust-dns-openssl = { version = "0.20.0", path = "../openssl", optional = true }
trust-dns-proto = { version = "0.20.0", path = "../proto", default-features = false }
trust-dns-rustls = { version = "0.20.0", path = "../rustls", optional = true }
webpki-roots = { version = "0.21", optional = true }

[target.'cfg(windows)'.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/rustls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-rustls"
version = "0.20.0-alpha.3"
version = "0.20.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -55,7 +55,7 @@ rustls = "0.19"
tokio = { version = "1.0", features = ["io-util", "net"] }
tokio-rustls = { version = "0.22", features = ["early-data"] }
# disables default features, i.e. openssl...
trust-dns-proto = { version = "0.20.0-alpha.3", path = "../proto", features = ["tokio-runtime"], default-features = false }
trust-dns-proto = { version = "0.20.0", path = "../proto", features = ["tokio-runtime"], default-features = false }
webpki = "0.21"

[dev-dependencies]
Expand Down
16 changes: 8 additions & 8 deletions crates/server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "trust-dns-server"
version = "0.20.0-alpha.3"
version = "0.20.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

# A short blurb about the package. This is not rendered in any format when
# uploaded to crates.io (aka this is not markdown)
description = """
Trust-DNS is a safe and secure DNS server with DNSec support.
Trust-DNS is a safe and secure DNS server with DNSSec support.
Eventually this could be a replacement for BIND9. The DNSSec support allows
for live signing of all records, in it does not currently support
records signed offline. The server supports dynamic DNS with SIG0 authenticated
Expand Down Expand Up @@ -91,9 +91,9 @@ tokio = { version = "1.0", features = ["net"] }
tokio-openssl = { version = "0.6.0", optional = true }
tokio-rustls = { version = "0.22", optional = true }
toml = "0.5"
trust-dns-client= { version = "0.20.0-alpha.3", path = "../client" }
trust-dns-https = { version = "0.20.0-alpha.3", path = "../https", optional = true }
trust-dns-proto = { version = "0.20.0-alpha.3", path = "../proto" }
trust-dns-openssl = { version = "0.20.0-alpha.3", path = "../openssl", optional = true }
trust-dns-resolver = { version = "0.20.0-alpha.3", path = "../resolver", features = ["serde-config"], optional = true }
trust-dns-rustls = { version = "0.20.0-alpha.3", path = "../rustls", optional = true }
trust-dns-client= { version = "0.20.0", path = "../client" }
trust-dns-https = { version = "0.20.0", path = "../https", optional = true }
trust-dns-proto = { version = "0.20.0", path = "../proto" }
trust-dns-openssl = { version = "0.20.0", path = "../openssl", optional = true }
trust-dns-resolver = { version = "0.20.0", path = "../resolver", features = ["serde-config"], optional = true }
trust-dns-rustls = { version = "0.20.0", path = "../rustls", optional = true }
4 changes: 2 additions & 2 deletions tests/compatibility-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-compatibility"
version = "0.20.0-alpha.3"
version = "0.20.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -52,4 +52,4 @@ env_logger = "0.8"
futures = "0.3.5"
openssl = { version = "0.10", features = ["v102", "v110"] }
rand = "0.8"
trust-dns-client= { version = "0.20.0-alpha.3", path="../../crates/client", features = ["dnssec-openssl"] }
trust-dns-client= { version = "0.20.0", path="../../crates/client", features = ["dnssec-openssl"] }
16 changes: 8 additions & 8 deletions tests/integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-integration"
version = "0.20.0-alpha.3"
version = "0.20.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -78,14 +78,14 @@ rand = "0.8"
rusqlite = { version = "0.24.0", features = ["bundled"] }
rustls = "0.19"
tokio = { version = "1.0", features = ["time", "rt"] }
trust-dns-client= { version = "0.20.0-alpha.3", path = "../../crates/client" }
trust-dns-https = { version = "0.20.0-alpha.3", path = "../../crates/https" }
trust-dns-openssl = { version = "0.20.0-alpha.3", path = "../../crates/openssl" }
trust-dns-proto = { version = "0.20.0-alpha.3", path = "../../crates/proto", features = ["testing"] }
trust-dns-resolver = { version = "0.20.0-alpha.3", path = "../../crates/resolver" }
trust-dns-rustls = { version = "0.20.0-alpha.3", path = "../../crates/rustls" }
trust-dns-client= { version = "0.20.0", path = "../../crates/client" }
trust-dns-https = { version = "0.20.0", path = "../../crates/https" }
trust-dns-openssl = { version = "0.20.0", path = "../../crates/openssl" }
trust-dns-proto = { version = "0.20.0", path = "../../crates/proto", features = ["testing"] }
trust-dns-resolver = { version = "0.20.0", path = "../../crates/resolver" }
trust-dns-rustls = { version = "0.20.0", path = "../../crates/rustls" }
# TODO: fixup tests to not require openssl
trust-dns-server = { version = "0.20.0-alpha.3", path = "../../crates/server" }
trust-dns-server = { version = "0.20.0", path = "../../crates/server" }
webpki-roots = { version = "0.21", optional = true }

[dev-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-util"
version = "0.20.0-alpha.3"
version = "0.20.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"

Expand Down Expand Up @@ -59,9 +59,9 @@ clap = "2.33.1"
console = "0.14.0"
data-encoding = "2.2.0"
env_logger = { version = "0.8.1", features = ["termcolor", "humantime", "atty"] }
trust-dns-client= { version = "0.20.0-alpha.3", features = ["dnssec-openssl"], path = "../crates/client" }
trust-dns-proto = { version = "0.20.0-alpha.3", features = ["dnssec-openssl"], path = "../crates/proto" }
trust-dns-resolver = { version = "0.20.0-alpha.3", features = ["dnssec-openssl"], path = "../crates/resolver" }
trust-dns-client= { version = "0.20.0", features = ["dnssec-openssl"], path = "../crates/client" }
trust-dns-proto = { version = "0.20.0", features = ["dnssec-openssl"], path = "../crates/proto" }
trust-dns-resolver = { version = "0.20.0", features = ["dnssec-openssl"], path = "../crates/resolver" }
log = "0.4"
openssl = { version = "0.10", features = ["v102", "v110"] }
structopt = "0.3"
Expand Down

0 comments on commit 140881b

Please sign in to comment.