summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadrieril2019-03-06 12:49:29 +0100
committerNadrieril2019-03-06 12:49:29 +0100
commit8f944ae4622102ad66eff19434725087239c1950 (patch)
tree134b73a52caf38f59e8db4119491dab09565f546
parent1655ace3290e1f13c68fd13844dcf225e2210697 (diff)
Remove doctest noise from cargo test
-rw-r--r--abnf_to_pest/Cargo.toml3
-rw-r--r--dhall/Cargo.toml3
-rw-r--r--dhall_core/Cargo.toml3
-rw-r--r--dhall_normalize/Cargo.toml3
4 files changed, 12 insertions, 0 deletions
diff --git a/abnf_to_pest/Cargo.toml b/abnf_to_pest/Cargo.toml
index bfa6b6d..2216b1c 100644
--- a/abnf_to_pest/Cargo.toml
+++ b/abnf_to_pest/Cargo.toml
@@ -4,6 +4,9 @@ version = "0.1.0"
authors = ["Nadrieril <nadrieril@users.noreply.github.com>"]
edition = "2018"
+[lib]
+doctest = false
+
[dependencies]
abnf = { git = "https://github.com/Nadrieril/abnf" }
itertools = "0.8.0"
diff --git a/dhall/Cargo.toml b/dhall/Cargo.toml
index 80df0c3..2505570 100644
--- a/dhall/Cargo.toml
+++ b/dhall/Cargo.toml
@@ -4,6 +4,9 @@ version = "0.1.0"
authors = ["NanoTech <nanotech@nanotechcorp.net>", "Nadrieril <nadrieril@users.noreply.github.com>"]
edition = "2018"
+[lib]
+doctest = false
+
[dependencies]
bytecount = "0.5.1"
itertools = "0.8.0"
diff --git a/dhall_core/Cargo.toml b/dhall_core/Cargo.toml
index 943e300..dcd5c1f 100644
--- a/dhall_core/Cargo.toml
+++ b/dhall_core/Cargo.toml
@@ -5,6 +5,9 @@ authors = ["NanoTech <nanotech@nanotechcorp.net>", "Nadrieril <nadrieril@users.n
edition = "2018"
build = "build.rs"
+[lib]
+doctest = false
+
[build-dependencies]
lalrpop = "0.16.3"
diff --git a/dhall_normalize/Cargo.toml b/dhall_normalize/Cargo.toml
index 65524ed..3affee8 100644
--- a/dhall_normalize/Cargo.toml
+++ b/dhall_normalize/Cargo.toml
@@ -4,6 +4,9 @@ version = "0.1.0"
authors = ["NanoTech <nanotech@nanotechcorp.net>", "Nadrieril <nadrieril@users.noreply.github.com>"]
edition = "2018"
+[lib]
+doctest = false
+
[dependencies]
bytecount = "0.5.1"
itertools = "0.8.0"