Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
singulared committed Sep 1, 2022
1 parent cb17190 commit 784990a
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ default = []
[dev-dependencies]
hitbox = { path = "../hitbox", features = ["derive", "cache-metrics"] }
hitbox-actix = { path = "../hitbox-actix", features = ["redis"]}
actix = "0.12"
actix = "0.13"
log = "0.4"
actix-rt = "2"
serde_json = "1"
serde_qs = { version = "0.8" }
serde_qs = { version = "0.10" }
serde = { version = "1", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1"
Expand All @@ -23,11 +23,11 @@ env_logger = "0.9"
actix_derive = "0.6"
actix-web = "4.0"
tracing = "0.1"
tracing-subscriber = "0.2"
metrics-exporter-prometheus = "0.9"
tracing-subscriber = "0.3"
metrics-exporter-prometheus = "0.11"

hyper = { version = "0.14", features = ["full"] }
tokio = { version = "1", features = ["full"] }
tower = { version = "0.4", features = ["full"] }
tower-http = { version = "0.2", features = ["full"] }
tower-http = { version = "0.3", features = ["full"] }
http = "0.2"
2 changes: 1 addition & 1 deletion hitbox-actix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ keywords = ["cache", "actix", "async", "cache-backend", "hitbox"]
hitbox = { path = "../hitbox", version = "0.1.0" }
hitbox-backend = { path = "../hitbox-backend", version = "0.1.0" }
hitbox-redis = { path = "../hitbox-redis", version = "0.1.0", optional = true }
actix = { version = "0.12" }
actix = { version = "0.13" }
serde = { version = "1", features = ["derive"] }
tracing = "0.1"
serde_json = "1.0.64"
Expand Down
10 changes: 5 additions & 5 deletions hitbox-backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ categories = ["caching", "asynchronous"]
keywords = ["cache", "actix", "async", "cache-backend", "hitbox"]

[dependencies]
async-trait = "0.1.51"
chrono = { version = "0.4.19", features = ["serde"] }
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
actix = "0.12"
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
actix = "0.13"
thiserror = "1"
2 changes: 1 addition & 1 deletion hitbox-redis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ keywords = ["cache", "async", "cache-backend", "hitbox", "redis"]

[dependencies]
hitbox-backend = { path = "../hitbox-backend", version = "0.1.0" }
actix = "0.12"
actix = "0.13"
log = "0.4"
redis = { version = "0.21", features = ["tokio-comp", "connection-manager"] }
actix_derive = "0.6"
Expand Down
10 changes: 5 additions & 5 deletions hitbox/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,25 @@ categories = ["caching", "asynchronous"]
keywords = ["cache", "actix", "async", "cache-backend", "hitbox"]

[dependencies]
actix = "0.12"
actix = "0.13"
hitbox-backend = { path = "../hitbox-backend", version = "0.1.0" }
hitbox-derive = { path = "../hitbox-derive", version = "0.1.0", optional = true }
serde_json = "1"
serde_qs = { version = "0.8", optional = true }
serde_qs = { version = "0.10", optional = true }
serde = { version = "1", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1"
metrics = { version = "0.18", optional = true }
metrics = { version = "0.20", optional = true }
lazy_static = { version = "1", optional = true }
tracing = "0.1"
tokio = { version = "1.17.0", features = ["macros"] }
async-trait = "0.1.52"

[dev-dependencies]
actix_derive = "0.6"
actix-web = "3"
actix-web = "4"
tokio = { version = "1", features = ["macros", "test-util"] }
metrics-util = "0.12"
metrics-util = "0.14"

[features]
default = []
Expand Down

0 comments on commit 784990a

Please sign in to comment.