From b43b0ab99143e781648b463a23d901518eea28a4 Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Fri, 9 Feb 2024 00:00:10 -0500 Subject: [PATCH] move deps after features --- lib/oxsdatatypes/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/oxsdatatypes/Cargo.toml b/lib/oxsdatatypes/Cargo.toml index 0598244b..d0e8aafd 100644 --- a/lib/oxsdatatypes/Cargo.toml +++ b/lib/oxsdatatypes/Cargo.toml @@ -13,13 +13,13 @@ documentation = "https://docs.rs/oxsdatatypes" edition.workspace = true rust-version.workspace = true -[dependencies] -thiserror.workspace = true - [features] js = ["js-sys"] custom-now = [] +[dependencies] +thiserror.workspace = true + [target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies] js-sys = { workspace = true, optional = true }