Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: library update for Jun 2021 #280

Merged
merged 2 commits into from
Jul 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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