From 16ef33300eb596ef8beab03ded91324bc8f09050 Mon Sep 17 00:00:00 2001 From: Takeshi Yoneda Date: Tue, 11 Feb 2025 18:28:33 +0000 Subject: [PATCH] dynamic_modules: updates outdated READMEmd Signed-off-by: Takeshi Yoneda --- source/extensions/dynamic_modules/sdk/rust/README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/source/extensions/dynamic_modules/sdk/rust/README.md b/source/extensions/dynamic_modules/sdk/rust/README.md index cbd5b75ba28f..3e505e98c0e1 100644 --- a/source/extensions/dynamic_modules/sdk/rust/README.md +++ b/source/extensions/dynamic_modules/sdk/rust/README.md @@ -6,12 +6,10 @@ Note that this crate references the local ABI header files, so this is intended ``` [dependencies] envoy-proxy-dynamic-modules-rust-sdk = { git = "https://github.com/envoyproxy/envoy", tag = "vX.Y.Z" } - -[dev-dependencies.envoy-proxy-dynamic-modules-rust-sdk] -git = "https://github.com/envoyproxy/envoy" -tag = "vX.Y.Z" -# Enable testing features to use the mock Envoy objects. -features = ["testing"] +# Or, you can use a specific commit instead of a tag: +# envoy-proxy-dynamic-modules-rust-sdk = { git = "https://github.com/envoyproxy/envoy", rev = "abcdef" } ``` instead of `envoy-proxy-dynamic-modules-rust-sdk = "X.Y.Z"`. + +See [Examples](https://github.com/envoyproxy/dynamic-modules-examples) for more details on how to use this SDK.