Skip to content

Commit

Permalink
Use 2021 edition
Browse files Browse the repository at this point in the history
  • Loading branch information
singulared committed Sep 1, 2022
1 parent 849e028 commit 2440d1c
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "hitbox-examples"
version = "0.0.0"
publish = false
edition = "2018"
edition = "2021"

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion hitbox-actix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "hitbox-actix"
version = "0.1.0"
authors = ["Belousow Makc <[email protected]>", "Andrey Ermilov <[email protected]>"]
license = "MIT"
edition = "2018"
edition = "2021"
description = "Asynchronous caching framework for Actix."
readme = "README.md"
repository = "https://github.com/hit-box/hitbox/"
Expand Down
2 changes: 1 addition & 1 deletion hitbox-backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "hitbox-backend"
version = "0.1.0"
authors = ["Belousow Makc <[email protected]>", "Andrey Ermilov <[email protected]>"]
license = "MIT"
edition = "2018"
edition = "2021"
description = "Backend trait for asynchronous caching framework in Rust."
readme = "README.md"
repository = "https://github.com/hit-box/hitbox/"
Expand Down
2 changes: 1 addition & 1 deletion hitbox-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "hitbox-derive"
version = "0.1.0"
authors = ["Belousow Makc <[email protected]>", "Andrey Ermilov <[email protected]>"]
license = "MIT"
edition = "2018"
edition = "2021"
description = "Derive macros for asynchronous caching framework in Rust."
readme = "README.md"
repository = "https://github.com/hit-box/hitbox/"
Expand Down
2 changes: 1 addition & 1 deletion hitbox-redis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "hitbox-redis"
version = "0.1.0"
authors = ["Belousow Makc <[email protected]>", "Andrey Ermilov <[email protected]>"]
license = "MIT"
edition = "2018"
edition = "2021"
description = "Hitbox redis backend."
readme = "README.md"
repository = "https://github.com/hit-box/hitbox/"
Expand Down
2 changes: 1 addition & 1 deletion hitbox-tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "hitbox-tokio"
version = "0.1.0"
authors = ["Belousow Makc <[email protected]>", "Andrey Ermilov <[email protected]>"]
license = "MIT"
edition = "2018"
edition = "2021"
description = "Hitbox cache framework tokio integration."
readme = "README.md"
repository = "https://github.com/hit-box/hitbox/"
Expand Down
2 changes: 1 addition & 1 deletion hitbox-tower/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
edition = "2018"
edition = "2021"
name = "hitbox-tower"
version = "0.1.0"

Expand Down
4 changes: 2 additions & 2 deletions hitbox/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name = "hitbox"
version = "0.1.0"
authors = ["Belousow Makc <[email protected]>", "Andrey Ermilov <[email protected]>"]
license = "MIT"
edition = "2018"
description = "Asynchronous caching framework in Rust."
edition = "2021"
description = "Asynchronous caching framework."
readme = "README.md"
repository = "https://github.com/hit-box/hitbox/"
categories = ["caching", "asynchronous"]
Expand Down

0 comments on commit 2440d1c

Please sign in to comment.