This example shows how to use cargo-deny to deny and only support explicitly allowed sources for crates
[dependencies] bitflags = { git = "https://github.com/bitflags/bitflags.git" }
[sources] unknown-registry = "deny" unknown-git = "deny" allow-git = [ "https://github.com/bitflags/bitflags.git" ]
TODO