diff --git a/sv-parser-error/Cargo.toml b/sv-parser-error/Cargo.toml index 6bc04a1..d47ab8e 100644 --- a/sv-parser-error/Cargo.toml +++ b/sv-parser-error/Cargo.toml @@ -10,6 +10,9 @@ readme = "../README.md" description = "Helper crate of sv-parser" edition = "2018" +[lib] +doctest = false + [package.metadata.release] disable-tag = true diff --git a/sv-parser-macros/Cargo.toml b/sv-parser-macros/Cargo.toml index bba5d06..179b1a0 100644 --- a/sv-parser-macros/Cargo.toml +++ b/sv-parser-macros/Cargo.toml @@ -15,6 +15,7 @@ disable-tag = true [lib] proc-macro = true +doctest = false [dependencies] quote = "1.0.0" diff --git a/sv-parser-parser/Cargo.toml b/sv-parser-parser/Cargo.toml index 3070b4f..c515c4e 100644 --- a/sv-parser-parser/Cargo.toml +++ b/sv-parser-parser/Cargo.toml @@ -10,6 +10,9 @@ readme = "../README.md" description = "Helper crate of sv-parser" edition = "2018" +[lib] +doctest = false + [package.metadata.release] disable-tag = true diff --git a/sv-parser-pp/Cargo.toml b/sv-parser-pp/Cargo.toml index 1fa3376..4dbe2eb 100644 --- a/sv-parser-pp/Cargo.toml +++ b/sv-parser-pp/Cargo.toml @@ -10,6 +10,9 @@ readme = "../README.md" description = "Helper crate of sv-parser" edition = "2018" +[lib] +doctest = false + [package.metadata.release] disable-tag = true diff --git a/sv-parser-syntaxtree/Cargo.toml b/sv-parser-syntaxtree/Cargo.toml index 1c6e2fd..013b7d9 100644 --- a/sv-parser-syntaxtree/Cargo.toml +++ b/sv-parser-syntaxtree/Cargo.toml @@ -11,6 +11,9 @@ description = "Helper crate of sv-parser" edition = "2018" build = "build.rs" +[lib] +doctest = false + [package.metadata.release] disable-tag = true diff --git a/sv-parser/Cargo.toml b/sv-parser/Cargo.toml index 3a2abac..75ec0c4 100644 --- a/sv-parser/Cargo.toml +++ b/sv-parser/Cargo.toml @@ -10,6 +10,9 @@ readme = "../README.md" description = "SystemVerilog parser library fully complient with IEEE 1800-2017" edition = "2018" +[lib] +doctest = false + [package.metadata.release] pre-release-replacements = [ {file = "../README.md", search = "sv-parser = \"[a-z0-9\\.-]+\"", replace = "sv-parser = \"{{version}}\""},