Skip to content

Commit

Permalink
Tidy
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Saveau <[email protected]>
  • Loading branch information
SUPERCILEX committed Dec 10, 2023
1 parent 6de8240 commit aa1c405
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 35 deletions.
50 changes: 25 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,38 +16,38 @@ clap = { version = "4.4.11", features = ["derive", "wrap_help"] }
clap-num = "1.0.2"
clap-verbosity-flag = "2.1.0"
error-stack = "0.4.1"
io-adapters = "0.1.0"
itoa = "1.0.9"
io-adapters = "0.3.0"
itoa = "1.0.10"
log = { version = "0.4.20", features = ["release_max_level_info"] }
paste = "1.0.14"
rand = { version = "0.8.5", default-features = false, features = ["std"] }
rand_distr = "0.4.3"
rand_xoshiro = "0.6.0"
simple_logger = { version = "4.3.0", default-features = false, features = ["colors"] }
sysexits = "0.7.6"
sysexits = "0.7.7"
thiserror = "1.0.50"
thousands = "0.2.0"
tokio = { version = "1.34.0", features = ["rt"] }
tokio = { version = "1.35.0", features = ["rt"] }
tracing = { version = "0.1.40", features = ["release_max_level_off", "log"], optional = true }
tracing-chrome = { version = "0.7.1", optional = true }
tracing-subscriber = { version = "0.3.18", optional = true }
typed-builder = "0.18.0"

[target.'cfg(unix)'.dependencies]
rustix = { version = "0.38.26", features = ["fs", "thread"] }
rustix = { version = "0.38.28", features = ["fs", "thread"] }

[dev-dependencies]
criterion = "0.5.1"
expect-test = "1.4.1"
more-asserts = "0.3.1"
rand = "0.8.5"
rstest = { version = "0.18.2", default-features = false }
supercilex-tests = "0.4.2"
supercilex-tests = "0.4.4"
tempfile = "3.8.1"
trycmd = "0.14.19"

[build-dependencies]
itoa = "1.0.9"
itoa = "1.0.10"

[features]
trace = ["tracing", "tracing-chrome", "tracing-subscriber"]
Expand Down
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#![feature(let_chains)]
#![feature(const_option)]
#![feature(inline_const)]
#![allow(clippy::multiple_crate_versions)]
#![allow(clippy::module_name_repetitions)]

pub use generator::*;

Expand Down
1 change: 0 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#![feature(string_remove_matches)]
#![allow(clippy::multiple_crate_versions)]

use std::{
io,
Expand Down

0 comments on commit aa1c405

Please sign in to comment.