Skip to content

Commit

Permalink
Updates deps to avoid importing chrono
Browse files Browse the repository at this point in the history
  • Loading branch information
thomastaylor312 committed Dec 7, 2021
1 parent 6971ae4 commit 8db4635
Show file tree
Hide file tree
Showing 8 changed files with 123 additions and 73 deletions.
93 changes: 64 additions & 29 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ warp = { version = "0.3", features = ["tls"], optional = true }
bytes = "1.1.0"
async-trait = "0.1.51"
futures = "0.3.17"
clap = { version = "3.0.0-beta.4", optional = true }
clap = { version = "3.0.0-beta.5", optional = true }
reqwest = { version = "0.11.4", features = ["stream"] }
hyper = "0.14.12"
url = "2.2.2"
tracing-subscriber = { version = "0.3", optional = true }
tracing-subscriber = { version = "0.3", features = ["env-filter"], optional = true }
dirs = { version = "4.0.0", optional = true }
mime_guess = { version = "2.0.3", optional = true }
lru = "0.7"
Expand All @@ -70,7 +70,7 @@ mime = "0.3.16"
sled = "0.34.7"
serde_cbor = "0.11.2"
oauth2 = { version = "4.1.0", features = ["reqwest"] }
jsonwebtoken = "7.2.0"
jsonwebtoken = "8.0.0-beta.6"
openid = { version = "0.9.3", optional = true }
bcrypt = "0.10.1"
either = "1.6.1"
Expand Down
2 changes: 1 addition & 1 deletion bin/client/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use bindle::{
provider::Provider,
};

use clap::Clap;
use clap::Parser;
use sha2::Digest;
use tokio::io::AsyncWriteExt;
use tokio::sync::Mutex;
Expand Down
Loading

0 comments on commit 8db4635

Please sign in to comment.