forked from MaterializeInc/materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeny.toml
55 lines (50 loc) · 1.73 KB
/
deny.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[bans]
multiple-versions = "deny"
skip = [
# Do not add to this list without good reason! Duplicate dependencies slow
# down compilation and bloat the binary.
# Waiting for clap to upgrade to v0.12.
{ name = "ansi_term", version = "0.11.0" },
# Waiting for clap to upgrade to v0.10.
{ name = "strsim", version = "0.8.0" },
# Waiting on https://github.com/bheisler/criterion.rs/pull/464.
{ name = "itertools", version = "0.9.0" },
# Waiting on https://github.com/hyperium/headers/pull/83.
{ name = "time", version = "0.1.44" },
]
deny = [
# Strum has suspect code quality and includes many unneeded features. Use
# more targeted enum macro crates, e.g. `enum-kinds`.
{ name = "strum" },
{ name = "strum-macros" },
# The `uncased` crate serves the same purpose as `unicase` and is more
# actively maintained.
{ name = "unicase" },
]
[licenses]
allow = [
"Apache-2.0",
"CC0-1.0",
"0BSD",
"BSD-2-Clause",
"BSD-3-Clause",
"ICU",
"ISC",
"MIT",
]
private = { ignore = true }
[sources]
unknown-git = "deny"
unknown-registry = "deny"
allow-git = [
"https://github.com/MaterializeInc/pubnub-rust.git",
# Until https://github.com/sfackler/rust-postgres/pull/752 is merged and released
"https://github.com/MaterializeInc/rust-postgres.git",
"https://github.com/MaterializeInc/rust-postgres-array.git",
"https://github.com/MaterializeInc/rust-prometheus.git",
"https://github.com/MaterializeInc/serde-protobuf.git",
"https://github.com/MaterializeInc/jemallocator.git",
"https://github.com/TimelyDataflow/timely-dataflow",
"https://github.com/TimelyDataflow/differential-dataflow.git",
"https://github.com/fede1024/rust-rdkafka.git",
]