Skip to content

Commit

Permalink
chore: library update for Jun 2021 (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrconlin authored Jul 12, 2021
1 parent 3f0dc8f commit 5e9aabf
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 42 deletions.
46 changes: 19 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions autoendpoint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ async-trait = "0.1"
autopush_common = { path = "../autopush-common" }
backtrace = "0.3"
base64 = "0.13"
cadence = "0.24"
config = "0.10.1"
cadence = "0.25"
config = "0.11"
docopt = "1.1.0"
fernet = "0.1.3"
futures = "0.3"
Expand Down
18 changes: 7 additions & 11 deletions autopush-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,30 +15,27 @@ name = "autopush_common"

[dependencies]
base64 = "0.13"
cadence = "0.24"
cadence = "0.25"
chrono = "0.4"
config = "0.10.1"
config = "0.11"
error-chain = "0.12"
fernet = "0.1.3"
# XXX: pin to 0.1 until likely hyper 0.13
futures = "0.1.29"
futures = "0.1.29" # 0.1.30 requires hyper 0.13+
futures-backoff = "0.1.0"
hex = "0.4.2"
httparse = "1.3"
# XXX: pin to hyper 0.12 for now: 0.13 has many changes..
hyper = "^0.12.36"
hyper = "^0.12.36" # 0.13+ requires too many changes
lazy_static = "1.4.0"
log = { version = "0.4", features = ["max_level_info", "release_max_level_info"] }
mozsvc-common = "0.1.1"
openssl = "0.10"
rand = "0.8"
regex = "1.4"
# XXX: pin to < 0.10 until futures 0.3
reqwest = "0.9.24"
reqwest = "0.9.24" # 0.10+ requires futures 0.3+
rusoto_core = "0.42.0" # 0.46+ requires futures 0.3+
rusoto_credential = "0.42.0" # 0.46+ requires futures 0.3+
rusoto_dynamodb = "0.42.0" # 0.46+ requires futures 0.3+
sentry = { version = "0.18.1", features = ["with_error_chain"] }
sentry = { version = "0.19", features = ["with_error_chain"] } # 0.20+ requires new sentry server
serde = "1.0"
serde_derive = "1.0"
serde_dynamodb = "0.4.1" # 0.7+ requires rusoto 0.46+
Expand All @@ -51,7 +48,6 @@ slog-scope = "4.4.0"
slog-stdlog = "4.1.0"
smallvec = "1.6" # for RUSTSEC-2021-0003
tokio-core = "0.1.17"
# XXX: pin to < 0.10 until hyper 0.13
tungstenite = { version = "0.9.2", default-features = false }
tungstenite = { version = "0.9.2", default-features = false } # 0.10+ requires hyper 0.13+
url = "2.2"
uuid = { version = "0.8", features = ["serde", "v4"] }
4 changes: 2 additions & 2 deletions autopush/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ autopush_common = { path = "../autopush-common" }
base64 = "0.13"
# XXX: pin to < 0.5 for hyper 0.12
bytes = "0.4"
cadence = "0.24"
cadence = "0.25"
crossbeam-channel = "0.5"
chrono = "0.4"
config = "0.10.1"
config = "0.11"
docopt = "1.1.0"
env_logger = "0.8"
error-chain = "0.12"
Expand Down

0 comments on commit 5e9aabf

Please sign in to comment.