From dd28430b67dcfda6dd2e91750a4c1a62c085150a Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 16 Jun 2026 14:58:50 +0800 Subject: Unify dependency specification syntax in README --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 699b1d9..b2f8b11 100644 --- a/README.md +++ b/README.md @@ -810,8 +810,18 @@ Hello, Alice! Add Mingling to your `Cargo.toml`: ```toml -[dependencies] -mingling = "0.2.0" +[dependencies.mingling] +version = "0.2.0" +features = [] +``` + +Or use the github version + +```toml +[dependencies.mingling] +git = "https://github.com/mingling-rs/mingling.git" +tag = "unreleased" +features = [] ``` Or use the [template project](https://github.com/mingling-rs/mingling-template): -- cgit