mirror of https://github.com/linkerd/linkerd2.git
build(deps): bump unicode-ident from 1.0.1 to 1.0.2 (#8910)
* build(deps): bump unicode-ident from 1.0.1 to 1.0.2
Bumps [unicode-ident](https://github.com/dtolnay/unicode-ident) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/dtolnay/unicode-ident/releases)
- [Commits](https://github.com/dtolnay/unicode-ident/compare/1.0.1...1.0.2)
---
updated-dependencies:
- dependency-name: unicode-ident
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
* Explain unicode license, from 668b7b86ca
Signed-off-by: Oliver Gould <ver@buoyant.io>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Oliver Gould <ver@buoyant.io>
This commit is contained in:
parent
903a13e576
commit
7e4758c0ab
|
@ -2173,9 +2173,9 @@ checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
|
|||
|
||||
[[package]]
|
||||
name = "unicode-ident"
|
||||
version = "1.0.1"
|
||||
version = "1.0.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c"
|
||||
checksum = "15c61ba63f9235225a22310255a29b806b907c9b8c964bcbd0a2c70f3f2deea7"
|
||||
|
||||
[[package]]
|
||||
name = "unicode-normalization"
|
||||
|
|
22
deny.toml
22
deny.toml
|
@ -22,16 +22,29 @@ allow-osi-fsf-free = "neither"
|
|||
default = "deny"
|
||||
confidence-threshold = 0.8
|
||||
exceptions = [
|
||||
{ allow = ["ISC", "MIT", "OpenSSL"], name = "ring", version = "*" },
|
||||
{ allow = [
|
||||
"ISC",
|
||||
"MIT",
|
||||
"OpenSSL",
|
||||
], name = "ring", version = "*" },
|
||||
|
||||
# The Unicode-DFS--2016 license is necessary for unicode-ident because they
|
||||
# use data from the unicode tables to generate the tables which are
|
||||
# included in the application. We do not distribute those data files so
|
||||
# this is not a problem for us. See https://github.com/dtolnay/unicode-ident/pull/9/files
|
||||
# for more details.
|
||||
{ allow = [
|
||||
"MIT",
|
||||
"Apache-2.0",
|
||||
"Unicode-DFS-2016",
|
||||
], name = "unicode-ident" },
|
||||
]
|
||||
|
||||
[[licenses.clarify]]
|
||||
name = "ring"
|
||||
version = "*"
|
||||
expression = "MIT AND ISC AND OpenSSL"
|
||||
license-files = [
|
||||
{ path = "LICENSE", hash = 0xbd0eed23 },
|
||||
]
|
||||
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
|
||||
|
||||
[bans]
|
||||
multiple-versions = "deny"
|
||||
|
@ -52,4 +65,3 @@ allow-git = []
|
|||
|
||||
[sources.allow-org]
|
||||
github = []
|
||||
|
||||
|
|
Loading…
Reference in New Issue