Skip to content

Commit

Permalink
build: drop format for lazy_format
Browse files Browse the repository at this point in the history
This unifies `syn` duplicates into 2.x. 🙌🏻
  • Loading branch information
ErichDonGubler committed Jun 14, 2024
1 parent 4dfc36c commit e73b5c4
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 53 deletions.
70 changes: 19 additions & 51 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ rust-version = "1.70.0"
bytes = "1"
clap = { version = "4.4.2", features = ["derive"] }
env_logger = "0.10.0"
format = "0.2.4"
futures = { version = "0.3.28", default-features = false, features = ["std"] }
indicatif = { version = "0.17.6", features = ["futures"] }
lazy_format = "2.0.3"
log = "0.4.20"
regex = "1.9.4"
reqwest = { version = "0.11.20", features = ["gzip", "json"] }
Expand Down
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ allow = [
"Apache-2.0",
"BSD-3-Clause",
"MIT",
"Unicode-3.0",
"Unicode-DFS-2016",
]
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ use std::{

use bytes::Bytes;
use clap::Parser;
use format::lazy_format;
use futures::stream::StreamExt;
use indicatif::ProgressBar;
use lazy_format::lazy_format;
use regex::Regex;
use reqwest::{Client, StatusCode, Url};
use serde::Deserialize;
Expand Down

0 comments on commit e73b5c4

Please sign in to comment.