1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
Index: jiff/Cargo.toml
===================================================================
--- jiff.orig/Cargo.toml
+++ jiff/Cargo.toml
@@ -60,7 +60,6 @@ rustdoc-args = [
[features]
alloc = [
"serde?/alloc",
- "portable-atomic-util/alloc",
]
default = [
"std",
@@ -71,10 +70,6 @@ default = [
"tzdb-concatenated",
"perf-inline",
]
-js = [
- "dep:wasm-bindgen",
- "dep:js-sys",
-]
logging = ["dep:log"]
perf-inline = []
serde = ["dep:serde"]
@@ -91,14 +86,12 @@ std = [
tz-fat = ["jiff-static?/tz-fat"]
tz-system = [
"std",
- "dep:windows-sys",
]
tzdb-bundle-always = [
"dep:jiff-tzdb",
"alloc",
]
tzdb-bundle-platform = [
- "dep:jiff-tzdb-platform",
"alloc",
]
tzdb-concatenated = ["std"]
@@ -178,41 +171,6 @@ features = [
[dev-dependencies.walkdir]
version = "2.5.0"
-[target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dependencies.js-sys]
-version = "0.3.50"
-optional = true
-
-[target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dependencies.wasm-bindgen]
-version = "0.2.70"
-optional = true
-
-[target."cfg(any())".dependencies.jiff-static]
-version = "=0.2.15"
-
-[target.'cfg(any(windows, target_family = "wasm"))'.dependencies.jiff-tzdb-platform]
-version = "0.1.3"
-optional = true
-
-[target.'cfg(not(target_family = "wasm"))'.dev-dependencies.hifitime]
-version = "3.9.0"
-
-[target.'cfg(not(target_has_atomic = "ptr"))'.dependencies.portable-atomic]
-version = "1.10.0"
-default-features = false
-
-[target.'cfg(not(target_has_atomic = "ptr"))'.dependencies.portable-atomic-util]
-version = "0.2.4"
-default-features = false
-
-[target."cfg(windows)".dependencies.windows-sys]
-version = ">=0.52.0, <=0.59.*"
-features = [
- "Win32_Foundation",
- "Win32_System_Time",
-]
-optional = true
-default-features = false
-
[profile.testrelease]
debug-assertions = false
inherits = "test"
|