-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
1 parent
f12254d
commit 07c55ab
Showing
5 changed files
with
1,280 additions
and
1,249 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 } | ||
] |
Oops, something went wrong.