Skip to content

Commit 6ec4488

Browse files
authored
Bump dependencies (#4812)
1 parent 145b803 commit 6ec4488

File tree

4 files changed

+61
-54
lines changed

4 files changed

+61
-54
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ jobs:
197197
uses: actions/checkout@v6
198198

199199
- name: Check for typos
200-
uses: crate-ci/typos@v1.43.5
200+
uses: crate-ci/typos@v1.44.0
201201

202202
clippy:
203203
name: Lint

Cargo.lock

Lines changed: 56 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ bus = "2.4.1"
9999
wasm-bindgen = { version = "0.2.97", default-features = false }
100100
getrandom = { version = "0.4.1", default-features = false }
101101
console_error_panic_hook = "0.1.7"
102-
wasm-bindgen-test = "0.3.58"
102+
wasm-bindgen-test = "0.3.64"
103103
smol = "2.0.2"
104104
isahc = "1.7.2"
105105
rustyline = { version = "17.0.2", default-features = false }
@@ -125,8 +125,8 @@ intrusive-collections = "0.10.0"
125125
cfg-if = "1.0.4"
126126
either = "1.15.0"
127127
sys-locale = "0.3.2"
128-
timezone_provider = { version = "0.1.2" }
129-
temporal_rs = { version = "0.1.2", default-features = false, features = ["float64_representable_durations"] }
128+
timezone_provider = { version = "0.2.0" }
129+
temporal_rs = { version = "0.2.0", default-features = false, features = ["float64_representable_durations"] }
130130
web-time = "1.1.0"
131131
criterion = "0.8.1"
132132
float-cmp = "0.10.0"

core/engine/src/builtins/temporal/now.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ impl Now {
204204

205205
let now: InnerNow<&Context> = InnerNow::new(context);
206206

207-
let pt = now.plain_time_with_provider(time_zone, context.timezone_provider())?;
207+
let pt = now.plain_time_iso_with_provider(time_zone, context.timezone_provider())?;
208208
create_temporal_time(pt, None, context).map(Into::into)
209209
}
210210
}

0 commit comments

Comments
 (0)