From ce4c4e9a4f0649ffb903e51b4c241f8fb3406876 Mon Sep 17 00:00:00 2001 From: andylokandy Date: Wed, 30 Oct 2024 17:45:32 +0800 Subject: [PATCH] fix --- Cargo.toml | 8 ++++---- examples/{env_rust_log.rs => env_filter.rs} | 0 examples/{plain_stdio.rs => text_stdio.rs} | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename examples/{env_rust_log.rs => env_filter.rs} (100%) rename examples/{plain_stdio.rs => text_stdio.rs} (100%) diff --git a/Cargo.toml b/Cargo.toml index f7ea587..09c7b57 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -96,8 +96,8 @@ version = "0.26" ## Examples [[example]] -name = "plain_stdio" -path = "examples/plain_stdio.rs" +name = "text_stdio" +path = "examples/text_stdio.rs" [[example]] name = "json_stdio" @@ -114,5 +114,5 @@ name = "custom_layout_filter" path = "examples/custom_layout_filter.rs" [[example]] -name = "env_rust_log" -path = "examples/env_rust_log.rs" +name = "env_filter" +path = "examples/env_filter.rs" diff --git a/examples/env_rust_log.rs b/examples/env_filter.rs similarity index 100% rename from examples/env_rust_log.rs rename to examples/env_filter.rs diff --git a/examples/plain_stdio.rs b/examples/text_stdio.rs similarity index 100% rename from examples/plain_stdio.rs rename to examples/text_stdio.rs