Skip to content

Commit

Permalink
Bump minimal versions of anyhow, thiserror and serde (#623)
Browse files Browse the repository at this point in the history
  • Loading branch information
msrd0 authored Sep 12, 2023
1 parent 3d11152 commit 5a92811
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 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"
8 changes: 4 additions & 4 deletions gotham/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ testing = ["hyper/client"]
borrow-bag = { path = "../misc/borrow_bag", version = "1.1" }
gotham_derive = { path = "../gotham_derive", version = "0.7.1", optional = true }

anyhow = "1.0"
anyhow = "1.0.5"
base64 = "0.21"
bincode = { version = "1.0", optional = true }
bytes = "1.0"
Expand All @@ -47,9 +47,9 @@ pin-project = "1.0.0"
rand = "0.8"
rand_chacha = "0.3"
regex = "1.0"
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
time = {version = "0.3.4", default-features = false, features = ["std", "formatting", "macros"]}
serde = { version = "1.0.186", features = ["derive"] }
thiserror = "1.0.2"
time = { version = "0.3.4", default-features = false, features = ["std", "formatting", "macros"] }
tokio = { version = "1.11.0", features = ["net", "rt-multi-thread", "time", "fs", "io-util"] }
tokio-rustls = { version = "0.23", optional = true }
uuid = { version = "1.0", features = ["v4"] }
Expand Down
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 5a92811

Please sign in to comment.