aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2020-01-10 00:41:53 +0000
committerKatharina Fey <kookie@spacekookie.de>2020-01-10 01:05:28 +0000
commitbea5c01718493a1c2a4840090b596eebdafa33f0 (patch)
treeec102e6eea7be55856dc1af8d0f6ef99da8346de
parentfdb464b380dcda0f9afeee080ebe988e3934e02b (diff)
Add quickcheck dependency to libgitmail
-rw-r--r--Cargo.lock13
-rw-r--r--libgitmail/Cargo.toml3
2 files changed, 15 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 098777e..8abf482 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -738,6 +738,7 @@ version = "0.1.0"
dependencies = [
"mailparse 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
"nom 5.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
+ "quickcheck 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@@ -1122,6 +1123,17 @@ version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
+name = "quickcheck"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+dependencies = [
+ "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
+ "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
+ "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
+]
+
+[[package]]
name = "quote"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2073,6 +2085,7 @@ dependencies = [
"checksum proc-macro-error-attr 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c2bf5d493cf5d3e296beccfd61794e445e830dfc8070a9c248ad3ee071392c6c"
"checksum proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "0319972dcae462681daf4da1adeeaa066e3ebd29c69be96c6abb1259d2ee2bcc"
"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0"
+"checksum quickcheck 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d5ca504a2fdaa08d3517f442fbbba91ac24d1ec4c51ea68688a038765e3b2662"
"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
"checksum quoted_printable 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "86cedf331228892e747bb85beb130b6bb23fc628c40dde9ea01eb6becea3c798"
"checksum rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae1b169243eaf61759b8475a998f0a385e42042370f3a7dbaf35246eacc8412"
diff --git a/libgitmail/Cargo.toml b/libgitmail/Cargo.toml
index 1a45357..c823723 100644
--- a/libgitmail/Cargo.toml
+++ b/libgitmail/Cargo.toml
@@ -8,4 +8,5 @@ license = "GPL-3.0"
[dependencies]
mailparse = "0.10"
-nom = "5.0" \ No newline at end of file
+nom = "5.0"
+quickcheck = "0.9" \ No newline at end of file