cs0.16 and r0.11 alpha.1

This commit is contained in:
Benjamin Fry 2019-01-19 12:42:54 -08:00
parent 3dcb77a18d
commit 2a40af7a02
14 changed files with 1961 additions and 54 deletions

1
.gitignore vendored
View File

@ -13,7 +13,6 @@
*.exe
# Generated by Cargo
Cargo.lock
/target
**/target

1908
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
[package]
name = "trust-dns"
version = "0.15.0"
version = "0.16.0-alpha.1"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
# A short blurb about the package. This is not rendered in any format when
@ -79,8 +79,8 @@ rustls = { version = "0.14", optional = true }
serde = { version = "1.0", optional = true }
tokio = "^0.1.6"
tokio-tcp = "^0.1"
trust-dns-https = {version = "0.2.0", path = "../https", optional = true }
trust-dns-proto = {version = "0.6.0", path = "../proto", features = ["dnssec"]}
trust-dns-https = {version = "0.3.0", path = "../https", optional = true }
trust-dns-proto = {version = "0.7.0", path = "../proto", features = ["dnssec"]}
untrusted = { version = "^0.6", optional = true }
webpki = { version = "0.18", optional = true }

View File

@ -1,6 +1,6 @@
[package]
name = "trust-dns-https"
version = "0.2.0"
version = "0.3.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
# A short blurb about the package. This is not rendered in any format when
@ -57,8 +57,8 @@ tokio-reactor = "0.1"
tokio-rustls = "0.8"
tokio-tcp = "0.1"
# disables default features, i.e. openssl...
trust-dns-proto = { version = "0.6.0", path = "../proto", default-features = false }
trust-dns-rustls = { version = "0.5.0", path = "../rustls", default-features = false }
trust-dns-proto = { version = "0.7.0", path = "../proto", default-features = false }
trust-dns-rustls = { version = "0.6.0", path = "../rustls", default-features = false }
typed-headers = "0.1"
webpki-roots = { version = "0.15" }
webpki = "0.18"

View File

@ -1,6 +1,6 @@
[package]
name = "trust-dns-native-tls"
version = "0.5.0"
version = "0.6.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
# A short blurb about the package. This is not rendered in any format when
@ -49,7 +49,7 @@ native-tls = "0.2"
tokio-tcp = "0.1"
tokio-tls = "0.2"
# disables default features, i.e. openssl...
trust-dns-proto = { version = "0.6.0", path = "../proto", default-features = false }
trust-dns-proto = { version = "0.7.0", path = "../proto", default-features = false }
[dev-dependencies]
tokio = "0.1.6"

View File

@ -1,6 +1,6 @@
[package]
name = "trust-dns-openssl"
version = "0.5.0"
version = "0.6.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
# A short blurb about the package. This is not rendered in any format when
@ -46,7 +46,7 @@ futures = "0.1.17"
openssl = { version = "0.10", features = ["v102", "v110"] }
tokio-openssl = "0.3"
tokio-tcp = "0.1"
trust-dns-proto = { version = "0.6.0", path = "../proto", features = ["openssl"] }
trust-dns-proto = { version = "0.7.0", path = "../proto", features = ["openssl"] }
[dev-dependencies]
openssl = { version = "0.10", features = ["v102", "v110"] }

View File

@ -1,6 +1,6 @@
[package]
name = "trust-dns-proto"
version = "0.6.2"
version = "0.7.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
# A short blurb about the package. This is not rendered in any format when

View File

@ -1,6 +1,6 @@
[package]
name = "trust-dns-resolver"
version = "0.10.2"
version = "0.11.0-alpha.1"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
# A short blurb about the package. This is not rendered in any format when
@ -72,11 +72,11 @@ serde_derive = { version = "1.0", optional = true }
smallvec = "^0.6"
tokio = { version = "^0.1.7", optional = true }
tokio-executor = "^0.1.6"
trust-dns-https = { version = "0.2.0", path = "../https", optional = true }
trust-dns-native-tls = { version = "0.5.0", path = "../native-tls", optional = true }
trust-dns-openssl = { version = "0.5.0", path = "../openssl", optional = true }
trust-dns-proto = { version = "0.6.0", path = "../proto" }
trust-dns-rustls = { version = "0.5.0", path = "../rustls", optional = true }
trust-dns-https = { version = "0.3.0", path = "../https", optional = true }
trust-dns-native-tls = { version = "0.6.0", path = "../native-tls", optional = true }
trust-dns-openssl = { version = "0.6.0", path = "../openssl", optional = true }
trust-dns-proto = { version = "0.7.0", path = "../proto" }
trust-dns-rustls = { version = "0.6.0", path = "../rustls", optional = true }
webpki-roots = { version = "^0.15", optional = true }
[target.'cfg(windows)'.dependencies]

View File

@ -1,6 +1,6 @@
[package]
name = "trust-dns-rustls"
version = "0.5.0"
version = "0.6.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
# A short blurb about the package. This is not rendered in any format when
@ -50,9 +50,9 @@ rustls = "0.14"
tokio-rustls = "0.8"
tokio-tcp = "^0.1"
# disables default features, i.e. openssl...
trust-dns-proto = { version = "0.6.0", path = "../proto", default-features = false }
trust-dns-proto = { version = "0.7.0", path = "../proto", default-features = false }
webpki = "0.18"
[dev-dependencies]
openssl = { version = "^0.10", features = ["v102", "v110"] }
tokio = "^0.1.6"
openssl = { version = "0.10", features = ["v102", "v110"] }
tokio = "0.1.6"

View File

@ -1,6 +1,6 @@
[package]
name = "trust-dns-server"
version = "0.15.0"
version = "0.16.0-alpha.1"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
# A short blurb about the package. This is not rendered in any format when
@ -99,13 +99,13 @@ tokio-tcp = "0.1"
tokio-timer = "0.2.6"
tokio-udp = "0.1"
toml = "0.4"
trust-dns = { version = "0.15.0", path = "../client" }
trust-dns-https = { version = "0.2.0", path = "../https", optional = true }
trust-dns-proto = { version = "0.6.0", path = "../proto" }
trust-dns-openssl = { version = "0.5.0", path = "../openssl", optional = true }
trust-dns-rustls = { version = "0.5.0", path = "../rustls", optional = true }
trust-dns = { version = "0.16.0-alpha", path = "../client" }
trust-dns-https = { version = "0.3.0", path = "../https", optional = true }
trust-dns-proto = { version = "0.7.0", path = "../proto" }
trust-dns-openssl = { version = "0.6.0", path = "../openssl", optional = true }
trust-dns-rustls = { version = "0.6.0", path = "../rustls", optional = true }
[dev-dependencies]
native-tls = "0.2"
trust-dns-native-tls = { version = "0.5.0", path = "../native-tls" }
trust-dns-native-tls = { version = "0.6.0", path = "../native-tls" }
tokio-tls = "0.2"

View File

@ -5,7 +5,7 @@ set -x
trust_dns_dir=$(dirname $0)/..
cd ${trust_dns_dir:?}
packages_ordered="proto openssl native-tls rustls https client resolver server"
packages_ordered="proto openssl native-tls rustls https client resolver server util"
## dry-run
cargo check
@ -14,5 +14,5 @@ for p in ${packages_ordered:?} ; do
echo "====> dry-run publish $p"
cargo publish --verbose --locked --dry-run --manifest-path crates/${p:?}/Cargo.toml
echo "====> publishing $p"
cargo publish --verbose --locked --manifest-path crates/${p:?}/Cargo.toml
cargo publish --verbose --locked --manifest-path crates/${p:?}/Cargo.toml
done

View File

@ -50,4 +50,4 @@ env_logger = "0.6"
futures = "^0.1.17"
openssl = { version = "^0.10", features = ["v102", "v110"] }
rand = "0.6"
trust-dns = { version = "0.15.0", path="../../crates/client", features = ["dnssec-openssl"] }
trust-dns = { version = "0.16.0-alpha", path="../../crates/client", features = ["dnssec-openssl"] }

View File

@ -64,25 +64,25 @@ dns-over-rustls = ["dns-over-tls", "trust-dns-resolver/dns-over-rustls", "trust-
dns-over-tls = []
[dependencies]
chrono = "^0.4"
chrono = "0.4"
env_logger = "0.6"
lazy_static = "^1.0"
log = "^0.4.1"
futures = "^0.1.17"
lazy_static = "1.0"
log = "0.4.1"
futures = "0.1.17"
openssl = { version = "^0.10", features = ["v102", "v110"] }
rand = "0.6"
rusqlite = { version = "0.16.0", features = ["bundled"] }
rustls = { version = "0.14" }
tokio = "^0.1.6"
tokio-tcp = "^0.1"
tokio = "0.1.6"
tokio-tcp = "0.1"
tokio-timer = "0.2.6"
tokio-udp = "^0.1"
trust-dns = { version = "0.15.0", path = "../../crates/client" }
trust-dns-https = { version = "0.2.0", path = "../../crates/https" }
trust-dns-openssl = { version = "0.5.0", path = "../../crates/openssl" }
trust-dns-proto = { version = "0.6.0", path = "../../crates/proto" }
trust-dns-resolver = { version = "0.10.0", path = "../../crates/resolver" }
trust-dns-rustls = { version = "0.5.0", path = "../../crates/rustls" }
tokio-udp = "0.1"
trust-dns = { version = "0.16.0-alpha", path = "../../crates/client" }
trust-dns-https = { version = "0.3.0", path = "../../crates/https" }
trust-dns-openssl = { version = "0.6.0", path = "../../crates/openssl" }
trust-dns-proto = { version = "0.7.0", path = "../../crates/proto" }
trust-dns-resolver = { version = "0.11.0-alpha", path = "../../crates/resolver" }
trust-dns-rustls = { version = "0.6.0", path = "../../crates/rustls" }
# TODO: fixup tests to not require openssl
trust-dns-server = { version = "0.15.0", path = "../../crates/server" }
webpki-roots = { version = "^0.15", optional = true }
trust-dns-server = { version = "0.16.0-alpha", path = "../../crates/server" }
webpki-roots = { version = "0.15", optional = true }

View File

@ -1,6 +1,6 @@
[package]
name = "trust-dns-util"
version = "0.3.0"
version = "0.4.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
# A short blurb about the package. This is not rendered in any format when
@ -47,11 +47,11 @@ name = "pem-to-public-dnskey"
path = "src/pem_to_public_dnskey.rs"
[dependencies]
clap = "^2.23.3"
clap = "2.23.3"
data-encoding = "2.1.0"
trust-dns = { version = "0.15.0", features = ["dnssec-openssl"], path = "../crates/client" }
trust-dns-proto = { version = "0.6.0", features = ["dnssec-openssl"], path = "../crates/proto" }
trust-dns-resolver = { version = "0.10.0", features = ["dnssec-openssl"], path = "../crates/resolver" }
trust-dns = { version = "0.16.0-alpha", features = ["dnssec-openssl"], path = "../crates/client" }
trust-dns-proto = { version = "0.7.0", features = ["dnssec-openssl"], path = "../crates/proto" }
trust-dns-resolver = { version = "0.11.0-alpha", features = ["dnssec-openssl"], path = "../crates/resolver" }
env_logger = "0.6"
log = "^0.4.1"
openssl = { version = "^0.10", features = ["v102", "v110"] }
log = "0.4.1"
openssl = { version = "0.10", features = ["v102", "v110"] }