From ce9bbc11294f579bed4d37d962c4c7beb530e109 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Kijewski?= Date: Wed, 14 Sep 2022 19:12:25 +0200 Subject: [PATCH] Update test-artichoke --- test-artichoke/Cargo.toml | 6 +++--- test-artichoke/tzdb/Cargo.toml | 10 ++++++++++ test-artichoke/tzdb/src/lib.rs | 1 + 3 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 test-artichoke/tzdb/Cargo.toml create mode 100644 test-artichoke/tzdb/src/lib.rs diff --git a/test-artichoke/Cargo.toml b/test-artichoke/Cargo.toml index cc67418..1e13f25 100644 --- a/test-artichoke/Cargo.toml +++ b/test-artichoke/Cargo.toml @@ -4,10 +4,10 @@ version = "0.1.0" edition = "2018" [dependencies] -spinoso-time = { version = "0.6.0", git = "https://github.com/artichoke/artichoke", default-features = false, features = ["tzrs-local"] } +spinoso-time = { version = "0.7.0", git = "https://github.com/artichoke/artichoke", default-features = false, features = ["tzrs", "tzrs-local"] } [patch.crates-io] -tzdb = { path = ".." } +tzdb = { path = "./tzdb/" } [workspace] -members = ["."] +members = [".", "tzdb"] diff --git a/test-artichoke/tzdb/Cargo.toml b/test-artichoke/tzdb/Cargo.toml new file mode 100644 index 0000000..ee973b5 --- /dev/null +++ b/test-artichoke/tzdb/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "tzdb" +version = "0.4.0" +edition = "2018" + +[dependencies] +orig_tzdb = { package = "tzdb", path = "../.." } + +[features] +local = [] diff --git a/test-artichoke/tzdb/src/lib.rs b/test-artichoke/tzdb/src/lib.rs new file mode 100644 index 0000000..4a750c6 --- /dev/null +++ b/test-artichoke/tzdb/src/lib.rs @@ -0,0 +1 @@ +pub use orig_tzdb::*;