From 9c63225e9b93e1aa8b63e64c180ffd05b7dd4b02 Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Mon, 18 Sep 2023 20:34:07 +0100 Subject: [PATCH] Bump version to 0.3.0, unlock minor versions on dependencies. --- Cargo.lock | 41 +++++++++++++++++++++++++++++++++-------- Cargo.toml | 10 +++++----- 2 files changed, 38 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 67be7a0..b25ed62 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -134,6 +134,12 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" +[[package]] +name = "bitflags" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" + [[package]] name = "bumpalo" version = "3.13.0" @@ -207,7 +213,7 @@ checksum = "acd4f3c17c83b0ba34ffbc4f8bbd74f079413f747f84a6f89292f138057e36ab" dependencies = [ "anstream", "anstyle", - "bitflags", + "bitflags 1.3.2", "clap_lex", "strsim", ] @@ -400,7 +406,7 @@ checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" dependencies = [ "hermit-abi 0.3.1", "io-lifetimes", - "rustix", + "rustix 0.37.19", "windows-sys", ] @@ -437,6 +443,12 @@ version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" +[[package]] +name = "linux-raw-sys" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a9bad9f94746442c783ca431b22403b519cd7fbeed0533fdd6328b2f2212128" + [[package]] name = "log" version = "0.4.19" @@ -647,11 +659,24 @@ version = "0.37.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" dependencies = [ - "bitflags", + "bitflags 1.3.2", "errno", "io-lifetimes", "libc", - "linux-raw-sys", + "linux-raw-sys 0.3.8", + "windows-sys", +] + +[[package]] +name = "rustix" +version = "0.38.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac5ffa1efe7548069688cd7028f32591853cd7b5b756d41bcffd2353e4fc75b4" +dependencies = [ + "bitflags 2.4.0", + "errno", + "libc", + "linux-raw-sys 0.4.7", "windows-sys", ] @@ -692,7 +717,7 @@ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" [[package]] name = "spacer" -version = "0.2.1" +version = "0.3.0" dependencies = [ "anyhow", "chrono", @@ -758,11 +783,11 @@ dependencies = [ [[package]] name = "terminal_size" -version = "0.2.6" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237" +checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" dependencies = [ - "rustix", + "rustix 0.38.3", "windows-sys", ] diff --git a/Cargo.toml b/Cargo.toml index ccf111f..0b03e8b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spacer" -version = "0.2.1" +version = "0.3.0" edition = "2021" license = "MIT" authors = ["Sam Rose "] @@ -23,16 +23,16 @@ codegen-units = 1 [dependencies] clap = { version = "4.3", features = ["derive"] } anyhow = "1.0" -terminal_size = "0.2" +terminal_size = "0.3" time = { version = "0.3" } lazy_static = "1.4" owo-colors = { version = "3", features = ["supports-colors"] } log = "0.4" env_logger = "0.10" human-panic = "1.0" -chrono = "0.4.30" -chrono-tz = "0.8.3" +chrono = "0.4" +chrono-tz = "0.8" [dev-dependencies] -regex = "1.9.5" +regex = "1" test-case = "3"