aboutsummaryrefslogtreecommitdiff
path: root/examples/std/Cargo.toml
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-10-17 23:19:45 +0000
committerGitHub <[email protected]>2021-10-17 23:19:45 +0000
commit90f6b56cba8123d51631aec2ceea7262eee149c5 (patch)
tree9aec97c4bd61f26f49eeb0e739caabd1c12b0548 /examples/std/Cargo.toml
parentd81a203ee264c8bb77eaae18944d4cace7b1683c (diff)
parentf5e251fc8176000a9156e29b25e3a5f18229acc0 (diff)
Merge #434
434: Clippy fixes r=Dirbaio a=Dirbaio Fixes most clippy lints. Added `#![allow(clippy::new_without_default)]` because I really, really don't agree with `new()` being the same as `default()`... Co-authored-by: Dario Nieuwenhuis <[email protected]>
Diffstat (limited to 'examples/std/Cargo.toml')
-rw-r--r--examples/std/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml
index 3ba495e59..b494cd3be 100644
--- a/examples/std/Cargo.toml
+++ b/examples/std/Cargo.toml
@@ -15,6 +15,6 @@ futures = { version = "0.3.17", default-features = false, features = ["async-awa
15log = "0.4.14" 15log = "0.4.14"
16nix = "0.22.1" 16nix = "0.22.1"
17libc = "0.2.101" 17libc = "0.2.101"
18clap = { version = "3.0.0-beta.4", features = ["derive"] } 18clap = { version = "3.0.0-beta.5", features = ["derive"] }
19rand_core = { version = "0.6.3", features = ["std"] } 19rand_core = { version = "0.6.3", features = ["std"] }
20heapless = { version = "0.7.5", default-features = false } 20heapless = { version = "0.7.5", default-features = false }