summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOrhun Parmaksız <orhunparmaksiz@gmail.com>2023-05-10 22:32:28 +0300
committerOrhun Parmaksız <orhunparmaksiz@gmail.com>2023-05-10 22:32:28 +0300
commitdbbf6cd345f9da4f9d4ae8e2277da900ea3f7a0f (patch)
treedfd660aa125499f69a6c8119b48edc078105a69b
parent05dfc320c13a0a6e5a7c81da9725873ce744607d (diff)
parent947b0914835b7daae001c6aae7aaf9ed896a2662 (diff)
Merge branch 'master' of ssh://github.com/orhun/kmon
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--Cargo.lock24
-rw-r--r--Cargo.toml8
3 files changed, 17 insertions, 17 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8bb6d1a..dabe6c8 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -75,7 +75,7 @@ jobs:
- name: Upload reports to codecov.io
if: github.event_name != 'pull_request' && matrix.TOOLCHAIN == 'stable' && matrix.TARGET == 'x86_64-unknown-linux-gnu'
- uses: codecov/codecov-action@v3.1.2
+ uses: codecov/codecov-action@v3.1.3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: cobertura.xml
diff --git a/Cargo.lock b/Cargo.lock
index 8e5939f..e2f313d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -95,18 +95,18 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
-version = "4.2.3"
+version = "4.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "49f9152d70e42172fdb87de2efd7327160beee37886027cf86f30a233d5b30b4"
+checksum = "34d21f9bf1b425d2968943631ec91202fe5e837264063503708b83013f8fc938"
dependencies = [
"clap_builder",
]
[[package]]
name = "clap_builder"
-version = "4.2.3"
+version = "4.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e067b220911598876eb55d52725ddcc201ffe3f0904018195973bc5b012ea2ca"
+checksum = "914c8c79fb560f238ef6429439a30023c862f7a28e688c58f7203f12b29970bd"
dependencies = [
"anstream",
"anstyle",
@@ -117,9 +117,9 @@ dependencies = [
[[package]]
name = "clap_complete"
-version = "4.2.0"
+version = "4.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "01c22dcfb410883764b29953103d9ef7bb8fe21b3fa1158bc99986c2067294bd"
+checksum = "1a19591b2ab0e3c04b588a0e04ddde7b9eaa423646d1b4a8092879216bf47473"
dependencies = [
"clap",
]
@@ -211,18 +211,18 @@ checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
[[package]]
name = "enum-iterator"
-version = "1.4.0"
+version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "706d9e7cf1c7664859d79cd524e4e53ea2b67ea03c98cc2870c5e539695d597e"
+checksum = "7add3873b5dd076766ee79c8e406ad1a472c385476b9e38849f8eec24f1be689"
dependencies = [
"enum-iterator-derive",
]
[[package]]
name = "enum-iterator-derive"
-version = "1.2.0"
+version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "355f93763ef7b0ae1c43c4d8eccc9d5848d84ad1a1d8ce61c421d1ac85a19d05"
+checksum = "eecf8589574ce9b895052fa12d69af7a233f99e6107f5cb8dd1044f2a17bfdcb"
dependencies = [
"proc-macro2",
"quote",
@@ -573,9 +573,9 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "syn"
-version = "1.0.109"
+version = "2.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
+checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822"
dependencies = [
"proc-macro2",
"quote",
diff --git a/Cargo.toml b/Cargo.toml
index aecdaaa..648393b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -19,14 +19,14 @@ termion = "2.0.1"
bytesize = "1.2.0"
unicode-width = "0.1.10"
colorsys = "0.6.7"
-enum-iterator = "1.4.0"
-clap = "4.2.3"
+enum-iterator = "1.4.1"
+clap = "4.2.7"
copypasta-ext = "0.4.4"
[build-dependencies]
clap_mangen = "0.2.10"
-clap_complete = "4.2.0"
-clap = "4.2.3"
+clap_complete = "4.2.1"
+clap = "4.2.7"
[profile.dev]
opt-level = 0