From 110bfda418b7f1444a2d32b28c515c172a6572a2 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Thu, 19 Mar 2020 17:43:34 +0000 Subject: Fix versions of dependent local crates --- serde_dhall/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'serde_dhall/Cargo.toml') diff --git a/serde_dhall/Cargo.toml b/serde_dhall/Cargo.toml index b0030e9..0ec792a 100644 --- a/serde_dhall/Cargo.toml +++ b/serde_dhall/Cargo.toml @@ -11,5 +11,5 @@ edition = "2018" [dependencies] serde = { version = "1.0", features = ["derive"] } -dhall = { version = "0.4.0", path = "../dhall" } -dhall_proc_macros = { version = "0.4.0", path = "../dhall_proc_macros" } +dhall = { version = "=0.4.0", path = "../dhall" } +dhall_proc_macros = { version = "=0.4.0", path = "../dhall_proc_macros" } -- cgit v1.2.3 From 85e2e8ee5e83dadd05b6974ba6c951350cb97a61 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Sat, 21 Mar 2020 21:30:30 +0000 Subject: Introduce option builder --- serde_dhall/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'serde_dhall/Cargo.toml') diff --git a/serde_dhall/Cargo.toml b/serde_dhall/Cargo.toml index 0ec792a..71a9b02 100644 --- a/serde_dhall/Cargo.toml +++ b/serde_dhall/Cargo.toml @@ -13,3 +13,5 @@ edition = "2018" serde = { version = "1.0", features = ["derive"] } dhall = { version = "=0.4.0", path = "../dhall" } dhall_proc_macros = { version = "=0.4.0", path = "../dhall_proc_macros" } +reqwest = { version = "0.10", features = ["blocking"] } +url = "2.1" -- cgit v1.2.3 From b0ee39b006ad2ca99bd3dddf06ab0e0dcc966d2f Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Sat, 21 Mar 2020 21:42:54 +0000 Subject: Test README code samples using doc_comment --- serde_dhall/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'serde_dhall/Cargo.toml') diff --git a/serde_dhall/Cargo.toml b/serde_dhall/Cargo.toml index 71a9b02..4e3cce7 100644 --- a/serde_dhall/Cargo.toml +++ b/serde_dhall/Cargo.toml @@ -15,3 +15,6 @@ dhall = { version = "=0.4.0", path = "../dhall" } dhall_proc_macros = { version = "=0.4.0", path = "../dhall_proc_macros" } reqwest = { version = "0.10", features = ["blocking"] } url = "2.1" + +[dev-dependencies] +doc-comment = "0.3" -- cgit v1.2.3 From 196491a37a9ab2869ab6d76e1417a85a9e033dd4 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Sat, 21 Mar 2020 21:56:09 +0000 Subject: Ensure version numbers are kept in sync --- serde_dhall/Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'serde_dhall/Cargo.toml') diff --git a/serde_dhall/Cargo.toml b/serde_dhall/Cargo.toml index 4e3cce7..7fd7b3e 100644 --- a/serde_dhall/Cargo.toml +++ b/serde_dhall/Cargo.toml @@ -18,3 +18,4 @@ url = "2.1" [dev-dependencies] doc-comment = "0.3" +version-sync = "0.8" -- cgit v1.2.3 From 8e74abfc55f86dbd9142a9f38e070d2583454ddd Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Mon, 23 Mar 2020 22:30:48 +0000 Subject: Go mad with doc macros --- serde_dhall/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'serde_dhall/Cargo.toml') diff --git a/serde_dhall/Cargo.toml b/serde_dhall/Cargo.toml index 7fd7b3e..6af883a 100644 --- a/serde_dhall/Cargo.toml +++ b/serde_dhall/Cargo.toml @@ -13,9 +13,9 @@ edition = "2018" serde = { version = "1.0", features = ["derive"] } dhall = { version = "=0.4.0", path = "../dhall" } dhall_proc_macros = { version = "=0.4.0", path = "../dhall_proc_macros" } +doc-comment = "0.3" reqwest = { version = "0.10", features = ["blocking"] } url = "2.1" [dev-dependencies] -doc-comment = "0.3" version-sync = "0.8" -- cgit v1.2.3