Skip to content

Commit

Permalink
I found some more versions that are too old
Browse files Browse the repository at this point in the history
  • Loading branch information
msrd0 committed Sep 12, 2023
1 parent 03f279c commit 3c70bf9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions examples/diesel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ publish = false
gotham = { path = "../../gotham/"}
gotham_middleware_diesel = { path = "../../middleware/diesel"}

diesel = { version = "2.0", features = ["r2d2", "sqlite"] }
diesel_migrations = { version = "2.0", features = ["sqlite"] }
diesel = { version = "2.1", features = ["r2d2", "sqlite"] }
diesel_migrations = { version = "2.1", features = ["sqlite"] }
futures-util = "0.3.14"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/templating/tera/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2018"

[dependencies]
gotham = { path = "../../../gotham" }
tera = "1.5"
tera = "1.6"
lazy_static = "1.0"
4 changes: 2 additions & 2 deletions middleware/diesel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ keywords = ["http", "async", "web", "gotham", "diesel"]
[dependencies]
gotham = { path = "../../gotham", version = "0.7.1", default-features = false, features = ["derive"] }

diesel = { version = "2.0", features = ["r2d2"] }
diesel = { version = "2.1", features = ["r2d2"] }
futures-util = "0.3.14"
log = "0.4"
tokio = { version = "1.0", features = ["full"] }

[dev-dependencies]
gotham = { path = "../../gotham", version = "0.7.1", default-features = false, features = ["testing"] }

diesel = { version = "2.0.0", features = ["sqlite"] }
diesel = { version = "2.1", features = ["sqlite"] }

0 comments on commit 3c70bf9

Please sign in to comment.