Add a payments section to ChannelManager docs
[rust-lightning] / possiblyrandom / Cargo.toml
1 [package]
2 name = "possiblyrandom"
3 version = "0.1.0"
4 authors = ["Matt Corallo"]
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/lightningdevkit/rust-lightning/"
7 description = """
8 A crate that wraps getrandom and always compiles, returning 0s when no randomness is available.
9 """
10 edition = "2021"
11
12 [package.metadata.docs.rs]
13 all-features = true
14 rustdoc-args = ["--cfg", "docsrs"]
15
16 [dependencies]
17 getrandom = { version = "0.2", optional = true, default-features = false }
18
19 # Enable getrandom if we are on a platform that (likely) supports it
20 [target.'cfg(not(any(target_os = "unknown", target_os = "none")))'.dependencies]
21 getrandom = { version = "0.2", default-features = false }