1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Description: avoid not-in-Debian prost-build feature cleanup-markdown
Author: Jonas Smedegaard <dr@jones.dk>
Bug-Debian: https://bugs.debian.org/1076079
Forwarded: not-needed
Last-Update: 2025-02-08
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/tonic-build/Cargo.toml
+++ b/tonic-build/Cargo.toml
@@ -25,7 +25,6 @@
[features]
default = ["transport", "prost"]
prost = ["prost-build", "dep:prost-types"]
-cleanup-markdown = ["prost", "prost-build/cleanup-markdown"]
transport = []
[package.metadata.docs.rs]
--- a/codegen/Cargo.toml
+++ b/codegen/Cargo.toml
@@ -8,4 +8,4 @@
[dependencies]
tempfile = "3.8.0"
-tonic-build = {path = "../tonic-build", default-features = false, features = ["prost", "cleanup-markdown"]}
+tonic-build = {path = "../tonic-build", default-features = false, features = ["prost"]}
|