mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-23 19:51:06 +01:00
chore: update env logger
This commit is contained in:
parent
9e7d612121
commit
1db640f62e
@ -45,6 +45,6 @@ actix-codec = "0.5"
|
|||||||
actix-rt = "2.8"
|
actix-rt = "2.8"
|
||||||
|
|
||||||
bytes = "1"
|
bytes = "1"
|
||||||
env_logger = "0.10"
|
pretty_env_logger = "0.5"
|
||||||
futures-util = { version = "0.3.17", default-features = false, features = ["sink", "async-await-macro"] }
|
futures-util = { version = "0.3.17", default-features = false, features = ["sink", "async-await-macro"] }
|
||||||
tokio = { version = "1.23.1", features = ["io-util", "rt-multi-thread", "macros", "fs"] }
|
tokio = { version = "1.23.1", features = ["io-util", "rt-multi-thread", "macros", "fs"] }
|
||||||
|
@ -18,7 +18,8 @@ use futures_util::{SinkExt as _, StreamExt as _};
|
|||||||
use tokio::{fs::File, io::AsyncReadExt as _};
|
use tokio::{fs::File, io::AsyncReadExt as _};
|
||||||
|
|
||||||
async fn run() -> io::Result<()> {
|
async fn run() -> io::Result<()> {
|
||||||
env_logger::init_from_env(env_logger::Env::default().default_filter_or("info"));
|
pretty_env_logger::formatted_timed_builder()
|
||||||
|
.parse_env(pretty_env_logger::env_logger::Env::default().default_filter_or("info"));
|
||||||
|
|
||||||
let addr = ("127.0.0.1", 8080);
|
let addr = ("127.0.0.1", 8080);
|
||||||
tracing::info!("starting server on port: {}", &addr.0);
|
tracing::info!("starting server on port: {}", &addr.0);
|
||||||
|
@ -25,7 +25,8 @@ use futures_util::future::ok;
|
|||||||
use tokio::io::{AsyncReadExt as _, AsyncWriteExt as _};
|
use tokio::io::{AsyncReadExt as _, AsyncWriteExt as _};
|
||||||
|
|
||||||
async fn run() -> io::Result<()> {
|
async fn run() -> io::Result<()> {
|
||||||
env_logger::init_from_env(env_logger::Env::default().default_filter_or("info"));
|
pretty_env_logger::formatted_timed_builder()
|
||||||
|
.parse_env(pretty_env_logger::env_logger::Env::default().default_filter_or("info"));
|
||||||
|
|
||||||
let count = Arc::new(AtomicUsize::new(0));
|
let count = Arc::new(AtomicUsize::new(0));
|
||||||
|
|
||||||
|
@ -114,7 +114,7 @@ actix-codec = "0.5"
|
|||||||
actix-rt = "2.2"
|
actix-rt = "2.2"
|
||||||
actix-server = "2"
|
actix-server = "2"
|
||||||
bytes = "1"
|
bytes = "1"
|
||||||
env_logger = "0.10"
|
pretty_env_logger = "0.5"
|
||||||
futures-util = { version = "0.3.17", default-features = false, features = ["sink"] }
|
futures-util = { version = "0.3.17", default-features = false, features = ["sink"] }
|
||||||
itertools = "0.12"
|
itertools = "0.12"
|
||||||
rcgen = "0.12"
|
rcgen = "0.12"
|
||||||
|
@ -41,7 +41,8 @@ use tracing::info;
|
|||||||
|
|
||||||
#[actix_rt::main]
|
#[actix_rt::main]
|
||||||
async fn main() -> io::Result<()> {
|
async fn main() -> io::Result<()> {
|
||||||
env_logger::init_from_env(env_logger::Env::default().default_filter_or("info"));
|
pretty_env_logger::formatted_timed_builder()
|
||||||
|
.parse_env(pretty_env_logger::env_logger::Env::default().default_filter_or("info"));
|
||||||
|
|
||||||
let root_path = env!("CARGO_MANIFEST_DIR")
|
let root_path = env!("CARGO_MANIFEST_DIR")
|
||||||
.parse::<PathBuf>()
|
.parse::<PathBuf>()
|
||||||
|
8
justfile
8
justfile
@ -4,13 +4,7 @@ _list:
|
|||||||
# Downgrade dev-dependencies necessary to run MSRV checks/tests.
|
# Downgrade dev-dependencies necessary to run MSRV checks/tests.
|
||||||
[private]
|
[private]
|
||||||
downgrade-for-msrv:
|
downgrade-for-msrv:
|
||||||
cargo update -p=ciborium --precise=0.2.1
|
cargo update -p=clap --precise=4.4.18
|
||||||
cargo update -p=ciborium-ll --precise=0.2.1
|
|
||||||
cargo update -p=time --precise=0.3.16
|
|
||||||
cargo update -p=clap --precise=4.3.24
|
|
||||||
cargo update -p=clap_lex --precise=0.5.0
|
|
||||||
cargo update -p=anstyle --precise=1.0.2
|
|
||||||
cargo update -p=trybuild --precise=1.0.89
|
|
||||||
|
|
||||||
msrv := ```
|
msrv := ```
|
||||||
cargo metadata --format-version=1 \
|
cargo metadata --format-version=1 \
|
||||||
|
Loading…
Reference in New Issue
Block a user