Skip to content

Commit

Permalink
fix openssl ver
Browse files Browse the repository at this point in the history
  • Loading branch information
dragazo committed Jan 7, 2025
1 parent 53f55aa commit 9011ccd
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/api-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "netsblox-api-common"
version = "1.6.4"
version = "1.6.5"
edition = "2021"
license = "MIT"
description = """
Expand Down
4 changes: 2 additions & 2 deletions crates/api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "netsblox-api"
version = "1.6.4"
version = "1.6.5"
edition = "2021"
license = "MIT"
description = """
Expand All @@ -13,7 +13,7 @@ A client library for the NetsBlox cloud API
serde = { version = "1.0.130", features = ["derive"] }
reqwest = { version = "0.11.20", features = ["json", "cookies"]}
futures-util = "0.3.19"
netsblox-api-common = { path = "../api-common", version = "1.6.4" }
netsblox-api-common = { path = "../api-common", version = "1.6.5" }
tokio-tungstenite = { version = "0.20.0", features = ["native-tls"] }
tungstenite = "0.20.1"
tokio = "1.0.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "netsblox-cli"
version = "1.6.4"
version = "1.6.5"
edition = "2021"
license = "MIT"
description = """
Expand All @@ -22,7 +22,7 @@ serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.96"
inquire = "0.6.2"
reqwest = {version = "0.11.20", features = ["json", "cookies"]}
netsblox-api = { path = "../api", version = "1.6.4" }
netsblox-api = { path = "../api", version = "1.6.5" }
futures-util = "0.3.19"
exitcode = "1.1.2"
xmlparser = "0.13.5"
Expand Down
4 changes: 2 additions & 2 deletions crates/cloud-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "netsblox-cloud-common"
version = "1.6.4"
version = "1.6.5"
edition = "2021"
license = "MIT"
description = """
Expand All @@ -14,7 +14,7 @@ serde = "1.0.130"
serde_json = "1.0.59"
mongodb = "2.6.1"
passwords = "3.1.8"
netsblox-api-common = { path = "../api-common", version = "1.6.4", features = ["to_bson"] }
netsblox-api-common = { path = "../api-common", version = "1.6.5", features = ["to_bson"] }
uuid = { version = "1.0.0-alpha.1", features = ["v4", "fast-rng"] }
sha2 = "0.10.0"
hex = "0.4.3"
4 changes: 2 additions & 2 deletions crates/cloud/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "netsblox-cloud"
version = "1.6.4"
version = "1.6.5"
edition = "2021"
license = "MIT"
description = """
Expand Down Expand Up @@ -31,7 +31,7 @@ figment = { version = "0.10.19", features = ["toml"]}
itertools = "0.10.3"
uuid = { version = "1.6.1", features = ["v4", "fast-rng", "serde"] }
derive_more = "0.99.17"
netsblox-cloud-common = { path = "../cloud-common", version = "1.6.4" }
netsblox-cloud-common = { path = "../cloud-common", version = "1.6.5" }
reqwest = {version = "0.11.20", features = ["cookies", "json"]}
lru = "0.11.1"
lettre = {version = "0.11.2", features = ["smtp-transport", "builder"]}
Expand Down
4 changes: 2 additions & 2 deletions crates/migrate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "netsblox-migrate"
version = "1.6.4"
version = "1.6.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
netsblox-cloud-common = { path = "../cloud-common", version = "1.6.4" }
netsblox-cloud-common = { path = "../cloud-common", version = "1.6.5" }
mongodb = "2.6.1"
serde = "1.0.130"
serde_json = "1.0.59"
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.cloud
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ COPY . .
RUN cargo install --path crates/cloud --locked

FROM debian:bullseye-slim
RUN apt-get update && apt-get install -y libssl1.1 ca-certificates && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y libssl1.1 libssl3 ca-certificates && rm -rf /var/lib/apt/lists/*
COPY --from=builder /usr/local/cargo/bin/netsblox-cloud /usr/local/bin/netsblox-cloud
COPY ./crates/cloud/config/ /config/
CMD ["netsblox-cloud"]

0 comments on commit 9011ccd

Please sign in to comment.