Skip to content

Commit 9e33bfc

Browse files
committed
update to Rust v1.83.0
1 parent 6c8a5e6 commit 9e33bfc

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ddrs"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Dynamic DNS client"
@@ -12,11 +12,11 @@ categories = ["command-line-utilities", "network-programming"]
1212
readme = "README.md"
1313

1414
[dependencies]
15-
anyhow = "1"
15+
anyhow = "1.0.94"
1616
async-trait = "0.1.83"
17-
clap = { version = "4.5.20", features = ["derive"] }
17+
clap = { version = "4.5.23", features = ["derive"] }
1818
dyn-clone = "1.0.17"
19-
hickory-resolver = "0.24.1"
19+
hickory-resolver = "0.24.2"
2020
humantime-serde = "1.1.1"
2121
local-ip-address = "0.6.3"
2222
reqwest = { version = "0.12.8", features = [
@@ -30,21 +30,21 @@ reqwest = { version = "0.12.8", features = [
3030
serde = { version = "1", features = ["serde_derive"] }
3131
serde_json = "1"
3232
smallvec = { version = "1.13.2", features = ["serde"] }
33-
stun = "0.6.0"
34-
tokio = { version = "1.41.0", features = [
33+
stun = "0.7.0"
34+
tokio = { version = "1.42.0", features = [
3535
"rt",
3636
"rt-multi-thread",
3737
"time",
3838
"signal",
3939
"macros",
4040
"parking_lot",
4141
] }
42-
tokio-util = { version = "0.7.12", features = ["rt"] }
42+
tokio-util = { version = "0.7.13", features = ["rt"] }
4343
toml = "0.8.19"
44-
tracing = { version = "0.1.40", features = ["log"] }
45-
tracing-subscriber = "0.3.18"
44+
tracing = { version = "0.1.41", features = ["log"] }
45+
tracing-subscriber = "0.3.19"
4646
typetag = "0.2.18"
47-
url = { version = "2.5.3", features = ["serde"] }
47+
url = { version = "2.5.4", features = ["serde"] }
4848

4949
[profile.release]
5050
strip = true

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.82.0-alpine AS base
1+
FROM rust:1.83.0-alpine AS base
22
RUN apk add musl-dev musl-utils
33
RUN cargo install cargo-chef
44

0 commit comments

Comments
 (0)