diff options
| author | klensy <klensy@users.noreply.github.com> | 2024-10-18 17:08:50 +0300 |
|---|---|---|
| committer | klensy <klensy@users.noreply.github.com> | 2024-10-18 17:08:50 +0300 |
| commit | 2c3a34a04017468ba376b045236ea6ecc36b3e71 (patch) | |
| tree | 15310bec48928de4ab1f470f34701cdc4a12a1e8 | |
| parent | a109190d7060236e655fc75533373fa274ec5343 (diff) | |
| download | rust-2c3a34a04017468ba376b045236ea6ecc36b3e71.tar.gz rust-2c3a34a04017468ba376b045236ea6ecc36b3e71.zip | |
pulldown-cmark: don't pull getopts dep
| -rw-r--r-- | Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index 0e4fbdd11f8..ee9c57ab835 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ toml = "0.7.3" walkdir = "2.3" filetime = "0.2.9" itertools = "0.12" -pulldown-cmark = "0.11" +pulldown-cmark = { version = "0.11", default-features = false, features = ["html"] } rinja = { version = "0.3", default-features = false, features = ["config"] } # UI test dependencies |
