Skip to content

Commit 6890e23

Browse files
committed
cargo add multimap btreemultimap bstr az glidesort tap omniswap
1 parent 78cc289 commit 6890e23

File tree

4 files changed

+90
-0
lines changed

4 files changed

+90
-0
lines changed

Cargo.lock

Lines changed: 61 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ recur-fn = "=2.2.0"
2424
indexing = { version = "=0.4.1", features = ["experimental_pointer_ranges"] }
2525
amplify = { version = "=3.14.2", features = ["c_raw", "rand", "stringly_conversions"] }
2626
easy-ext = "=1.0.1"
27+
multimap = "=0.9.0"
28+
btreemultimap = "=0.1.1"
29+
bstr = "=1.4.0"
30+
az = "=1.2.1"
31+
glidesort = "=0.1.2"
32+
tap = "=1.0.1"
33+
omniswap = "=0.1.0"
2734

2835
# 2020
2936
num = "=0.4.0"

clarify.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# https://github.com/dimforge/nalgebra/issues/972
22
# BSD-3-Clauseで正しく、LICENSEファイルだけアップデートされていない状態らしい
3+
[clarify.bstr]
4+
expression = "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
5+
license-files = [
6+
{ path = "COPYING", hash = 0x278afbcf },
7+
{ path = "LICENSE-APACHE", hash = 0x24b54f4b} ,
8+
{ path = "LICENSE-MIT", hash = 0x462dee44 },
9+
{ path = "src/unicode/data/LICENSE-UNICODE", hash = 0x70f7339 },
10+
]
11+
312
[clarify.nalgebra]
413
expression = "BSD-3-Clause"
514
license-files = []
@@ -17,6 +26,18 @@ skip-files = [
1726
"src/testdata/LICENSE",
1827
]
1928

29+
[clarify.regex-automata]
30+
expression = "Unlicense OR MIT"
31+
license-files = [
32+
{ path = "COPYING", hash = 0x969f37d8 },
33+
{ path = "LICENSE-MIT", hash = 0x616d8a83 },
34+
{ path = "UNLICENSE", hash = 0x87b84020 },
35+
]
36+
skip-files = [
37+
"data/fowler-tests/LICENSE",
38+
"data/tests/fowler/LICENSE",
39+
]
40+
2041
[clarify.regex-syntax]
2142
expression = "(MIT OR Apache-2.0) AND Unicode-DFS-2016"
2243
license-files = [

deny.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ multiple-versions = "allow"
99
# そのことを各build.rsを目視して確認した。
1010
allow-build-scripts = [
1111
{ name = "anyhow", version = "=1.0.70" }, # https://docs.rs/crate/anyhow/1.0.70/source/build.rs
12+
{ name = "az", version = "1.2.1" }, # https://docs.rs/crate/az/1.2.1/source/build.rs
1213
{ name = "im-rc", version = "=15.1.0" }, # https://docs.rs/crate/im-rc/15.1.0/source/build.rs
1314
{ name = "indexmap", version = "=1.9.3" }, # https://docs.rs/crate/indexmap/1.9.3/source/build.rs
1415
{ name = "libc", version = "=0.2.140" }, # https://docs.rs/crate/libc/0.2.140/source/build.rs

0 commit comments

Comments
 (0)