From 24ef4c8cbf72960a8f5b25f6e56907710f2e390f Mon Sep 17 00:00:00 2001 From: Weihang Lo Date: Sat, 6 Dec 2025 10:04:25 -0500 Subject: [PATCH] fix: list all examples that may need HTTP and SSH --- Cargo.toml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 30a496deaf..10b0746365 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,5 +49,18 @@ members = ["systest", "git2-curl"] [package.metadata.docs.rs] features = ["https", "ssh"] -[[examples]] +[[example]] +name = "clone" +required-features = ["https", "ssh"] + +[[example]] +name = "fetch" +required-features = ["https", "ssh"] + +[[example]] +name = "ls-remote" +required-features = ["https", "ssh"] + +[[example]] +name = "pull" required-features = ["https", "ssh"]