diff --git a/Cargo.lock b/Cargo.lock index b7d5394..d17fb91 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,7 +10,7 @@ checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6" [[package]] name = "api-impl" -version = "0.4.2" +version = "0.4.3" dependencies = [ "convert_case", "quote", @@ -173,7 +173,7 @@ dependencies = [ [[package]] name = "githuber" -version = "0.4.2" +version = "0.4.3" dependencies = [ "anyhow", "api-impl", @@ -292,9 +292,9 @@ dependencies = [ [[package]] name = "indexmap" -version = "1.9.1" +version = "1.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" +checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" dependencies = [ "autocfg", "hashbrown", @@ -604,9 +604,9 @@ checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965" [[package]] name = "serde_json" -version = "1.0.87" +version = "1.0.88" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ce777b7b150d76b9cf60d28b55f5847135a003f7d7350c6be7a773508ce7d45" +checksum = "8e8b3801309262e8184d9687fb697586833e939767aea0dda89f5a8e650e8bd7" dependencies = [ "itoa", "ryu", @@ -710,9 +710,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.21.2" +version = "1.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099" +checksum = "d76ce4a75fb488c605c54bf610f221cea8b0dafb53333c1a67e8ee199dcd2ae3" dependencies = [ "autocfg", "bytes", diff --git a/Cargo.toml b/Cargo.toml index fe0c6d6..38045e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,16 +9,16 @@ license = "GPL-3.0" name = "githuber" readme = "README.md" repository = "https://github.com/hack-ink/githuber" -version = "0.4.2" +version = "0.4.3" [dependencies] -api-impl = { version = "0.4.2", path = "src/api/impl" } +api-impl = { version = "0.4.3", path = "src/api/impl" } [dev-dependencies] anyhow = { version = "1.0" } reqwest = { version = "0.11", features = ["json"] } serde_json = { version = "1.0" } -tokio = { version = "1.21", features = ["macros"] } +tokio = { version = "1.22", features = ["macros"] } tracing = { version = "0.1" } tracing-subscriber = { version = "0.3" } diff --git a/src/api/impl/Cargo.toml b/src/api/impl/Cargo.toml index 8dabdf5..d156279 100644 --- a/src/api/impl/Cargo.toml +++ b/src/api/impl/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "api-impl" readme = "README.md" repository = "https://github.com/hack-ink/githuber" -version = "0.4.2" +version = "0.4.3" [lib] proc-macro = true diff --git a/src/api/impl/debug/Cargo.toml b/src/api/impl/debug/Cargo.toml index fd3c00b..1ac05f4 100644 --- a/src/api/impl/debug/Cargo.toml +++ b/src/api/impl/debug/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/hack-ink/githuber" version = "0.0.0" [dependencies] -api-impl = { version = "0.4.2", path = "..", features = ["debug"] } +api-impl = { version = "0.4.3", path = "..", features = ["debug"] } [workspace] exclude = []