Skip to content

Commit

Permalink
Clean up (#10)
Browse files Browse the repository at this point in the history
* Made attributes of publish properties pub instead of pub(crate)

* Bumped rustls version

* Going to move TLS tests to examples

* Bumped tokio-rustls and rustls-pemfile

* Bumped version number to 0.2.0

* Removed unused imports

* Added license accept for rustls-webpki

* Fix license issue for real now
  • Loading branch information
GunnarMorrigan authored Apr 4, 2023
1 parent f12254d commit 07c55ab
Show file tree
Hide file tree
Showing 5 changed files with 1,280 additions and 1,249 deletions.
35 changes: 28 additions & 7 deletions Cargo.lock

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

15 changes: 8 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mqrstt"
version = "0.1.8"
version = "0.2.0"
homepage = "https://github.com/GunnarMorrigan/mqrstt"
repository = "https://github.com/GunnarMorrigan/mqrstt"
documentation = "https://docs.rs/mqrstt"
Expand Down Expand Up @@ -43,16 +43,17 @@ tokio = { version = "1.26.0", features = ["macros", "io-util", "net", "time"], o
smol = { version = "1.3.0", optional = true }

[dev-dependencies]
pretty_assertions = "1.3.0"
tokio = { version = "1.26.0", features = ["rt-multi-thread", "rt", "macros", "sync", "io-util", "net", "time"] }
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }

smol = { version = "1.3.0" }
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
tokio = { version = "1.26.0", features = ["rt-multi-thread", "rt", "macros", "sync", "io-util", "net", "time"] }

pretty_assertions = "1.3.0"

rustls = { version = "0.20.7" }
rustls-pemfile = { version = "1.0.1" }
rustls = { version = "0.21.0" }
rustls-pemfile = { version = "1.0.2" }
webpki = { version = "0.22.0" }
async-rustls = { version = "0.3.0" }
tokio-rustls = "0.23.4"
tokio-rustls = "0.24.0"
rstest = "0.16.0"
rand = "0.8.5"
65 changes: 36 additions & 29 deletions deny.toml
Original file line number Diff line number Diff line change
@@ -1,30 +1,37 @@
[advisories]
vulnerability = "deny"
unsound = "deny"
unmaintained = "deny"

[licenses]
unlicensed = "deny"
allow-osi-fsf-free = "neither"
copyleft = "deny"
confidence-threshold = 0.95
allow = ["MPL-2.0", "Apache-2.0", "MIT", "BSD-3-Clause", "ISC"]

exceptions = [
{ allow = ["Unicode-DFS-2016"], name = "unicode-ident" },
{ allow = ["OpenSSL"], name = "ring" }
]

[[licenses.clarify]]
name = "ring"
expression = "MIT AND ISC AND OpenSSL"
license-files = [
{ path = "LICENSE", hash = 0xbd0eed23 }
]

[[licenses.clarify]]
name = "webpki"
expression = "ISC"
license-files = [
{ path = "LICENSE", hash = 0x001c7e6c },
[advisories]
vulnerability = "deny"
unsound = "deny"
unmaintained = "deny"

[licenses]
unlicensed = "deny"
allow-osi-fsf-free = "neither"
copyleft = "deny"
confidence-threshold = 0.95
allow = ["MPL-2.0", "Apache-2.0", "MIT", "BSD-3-Clause", "ISC"]

exceptions = [
{ allow = ["Unicode-DFS-2016"], name = "unicode-ident" },
{ allow = ["OpenSSL"], name = "ring" }
]

[[licenses.clarify]]
name = "ring"
expression = "MIT AND ISC AND OpenSSL"
license-files = [
{ path = "LICENSE", hash = 0xbd0eed23 }
]

[[licenses.clarify]]
name = "webpki"
expression = "ISC"
license-files = [
{ path = "LICENSE", hash = 0x001c7e6c },
]

[[licenses.clarify]]
name = "rustls-webpki"
expression = "ISC"
license-files = [
{ path = "LICENSE", hash = 0x001c7e6c }
]
Loading

0 comments on commit 07c55ab

Please sign in to comment.