diff --git a/Cargo.toml b/Cargo.toml index 81dc9e16d671997044c37f791aa30b9a37f08433..992f62296a3b0a415172d02e7e5dd1941d739056 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "carp" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["Michael Kevin Nelo Guzman", "Ruth Hailerys Rivas Gonzales"] description = "CARP is a reverse proxy and HTTP cache made to make caching deterministic" diff --git a/configuration/Cargo.toml b/configuration/Cargo.toml index dde86f32a24164bba1169127f3aeef061a9b3856..1c282a42a192e2227df5822477f084716238c1a0 100644 --- a/configuration/Cargo.toml +++ b/configuration/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "configuration" -version = "0.4.0" +version = "0.5.0" authors = ["Michael Kevin Nelo Guzman", "Ruth Hailerys Rivas Gonzales"] description = "Crate holding the configuration construction logic of CARP" edition = "2021" diff --git a/intrinsics/Cargo.toml b/intrinsics/Cargo.toml index 77eae49ba6d72f4188b6becdbbf044f0561cab6d..36b5846b007419720982a443c8ab1a75e488ac01 100644 --- a/intrinsics/Cargo.toml +++ b/intrinsics/Cargo.toml @@ -1,6 +1,8 @@ [package] name = "intrinsics" -version = "0.4.0" +version = "0.5.0" +authors = ["Michael Kevin Nelo Guzman", "Ruth Hailerys Rivas Gonzales"] +description = "Crate providing likely/unlikely processor hints" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 5120c8aa0c2eea5ba1aee352b55f98cd9ee7c1b1..35f622fe91f421968604a1147a5028ba8023febe 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "macros" -version = "0.4.0" +version = "0.5.0" authors = ["Michael Kevin Nelo Guzman", "Ruth Hailerys Rivas Gonzales"] description = "Crate holding some useful macros to use on CARP" edition = "2021" diff --git a/models/Cargo.toml b/models/Cargo.toml index 6f9bfb6dc6fc46765d1348f04d3ff147ff2c6c15..ab5abb23599e247341be403e68f32ff4c74f4baa 100644 --- a/models/Cargo.toml +++ b/models/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "models" -version = "0.4.0" +version = "0.5.0" authors = ["Michael Kevin Nelo Guzman", "Ruth Hailerys Rivas Gonzales"] description = "Crate holding the models that compose the global state of CARP" edition = "2021" diff --git a/pipeline-cache-manager/Cargo.toml b/pipeline-cache-manager/Cargo.toml index 3aeea94db1eb362c0d51f9116a64bbd744a4d1fb..bfae4c8994063fbe05170700b18edb969a1cc9f5 100644 --- a/pipeline-cache-manager/Cargo.toml +++ b/pipeline-cache-manager/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pipeline-cache-manager" -version = "0.4.0" +version = "0.5.0" authors = ["Michael Kevin Nelo Guzman", "Ruth Hailerys Rivas Gonzales"] description = "Crate holding the caching logic, including invalidation and determinism" edition = "2021" diff --git a/pipeline-driver/Cargo.toml b/pipeline-driver/Cargo.toml index 232fadeb2afdcca01b84ac4e88d73c28ac437d4b..3081ede4885ff96769f919b664ec351ab5f046c6 100644 --- a/pipeline-driver/Cargo.toml +++ b/pipeline-driver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pipeline-driver" -version = "0.4.0" +version = "0.5.0" authors = ["Michael Kevin Nelo Guzman", "Ruth Hailerys Rivas Gonzales"] description = "Crate holding the logic to start the route handlers, caches and plugins of CARP" edition = "2021" diff --git a/pipeline-request-handler/Cargo.toml b/pipeline-request-handler/Cargo.toml index db2c6ae87156c2c17c2191a4c2b0408c2c7b8696..54977b827b9066292cd09f59925adf340c8f0c97 100644 --- a/pipeline-request-handler/Cargo.toml +++ b/pipeline-request-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pipeline-request-handler" -version = "0.4.0" +version = "0.5.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/pipeline/Cargo.toml b/pipeline/Cargo.toml index 5a674b9f546d3950f1f50ea9c71e887551247cb3..b23f181f423984dfbd6b0017f3e38afcc86eef43 100644 --- a/pipeline/Cargo.toml +++ b/pipeline/Cargo.toml @@ -1,6 +1,8 @@ [package] name = "pipeline" -version = "0.4.0" +version = "0.5.0" +authors = ["Michael Kevin Nelo Guzman", "Ruth Hailerys Rivas Gonzales"] +description = "Crate holding the core that composes the request handling, caching and plugin management of CARP" edition = "2021" [dependencies]