From f5b9ade6df24bb7287038710df66f5688e464420 Mon Sep 17 00:00:00 2001 From: Ning Sun Date: Thu, 13 Feb 2025 22:16:57 -0800 Subject: [PATCH] chore: add section marker for extenal dependencies (#5536) * chore: add section marker for extenal dependencies * chore: update cargo.lock * Update Cargo.toml Co-authored-by: shuiyisong <113876041+shuiyisong@users.noreply.github.com> * chore: update meter-core --------- Co-authored-by: shuiyisong <113876041+shuiyisong@users.noreply.github.com> --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 4ed533acd2..e6bf9f3e5a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -81,6 +81,7 @@ rust.unknown_lints = "deny" rust.unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } [workspace.dependencies] +# DO_NOT_REMOVE_THIS: BEGIN_OF_EXTERNAL_DEPENDENCIES # We turn off default-features for some dependencies here so the workspaces which inherit them can # selectively turn them on if needed, since we can override default-features = true (from false) # for the inherited dependency but cannot do the reverse (override from true to false). @@ -208,6 +209,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "fmt"] typetag = "0.2" uuid = { version = "1.7", features = ["serde", "v4", "fast-rng"] } zstd = "0.13" +# DO_NOT_REMOVE_THIS: END_OF_EXTERNAL_DEPENDENCIES ## workspaces members api = { path = "src/api" }