diff --git a/Cargo.lock b/Cargo.lock index cb95e40..34c5a9d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2463,15 +2463,6 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" -[[package]] -name = "openssl-src" -version = "300.3.2+3.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a211a18d945ef7e648cc6e0058f4c548ee46aab922ea203e0d30e966ea23647b" -dependencies = [ - "cc", -] - [[package]] name = "openssl-sys" version = "0.9.103" @@ -2480,7 +2471,6 @@ checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" dependencies = [ "cc", "libc", - "openssl-src", "pkg-config", "vcpkg", ] @@ -2549,7 +2539,6 @@ dependencies = [ "graphql_client", "indoc", "kameo", - "openssl", "prost", "rand", "rdkafka", diff --git a/Cargo.toml b/Cargo.toml index 0201972..72777c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,6 @@ rand = { version = "0.8.5" } anyhow = "1.0.86" futures-util = "0.3.30" rdkafka = { version = "0.36.2", features = ["ssl"] } -openssl = { version = "0.10", features = ["vendored"] } tokio = { version = "1.39.2", features = ["full"] } tokio-util = { version = "0.7.11", features = ["rt"] } tokio-macros = "2.4.0" diff --git a/Cross.toml b/Cross.toml index ad44484..11dcb3d 100644 --- a/Cross.toml +++ b/Cross.toml @@ -4,8 +4,14 @@ pre-build = [ "apt-get update && apt-get install --assume-yes pkg-config:$CROSS_DEB_ARCH ca-certificates libssl-dev:$CROSS_DEB_ARCH", ] -[target.aarch64-unknown-linux-gnu] -pre-build = [ - "dpkg --add-architecture $CROSS_DEB_ARCH", - "apt-get update && apt-get install --assume-yes pkg-config:$CROSS_DEB_ARCH ca-certificates libssl-dev:$CROSS_DEB_ARCH", -] +# [target.aarch64-unknown-linux-gnu] +# image = "ghcr.io/cross-rs/aarch64-unknown-linux-gnu:edge" +# pre-build = [ +# "dpkg --add-architecture arm64", +# "apt-get update && apt-get install --assume-yes pkg-config:arm64 ca-certificates libssl-dev:arm64", +# ] + +# Example Dockerfile for aarch64-unknown-linux-gnu +# FROM ghcr.io/cross-rs/aarch64-unknown-linux-gnu:edge +# RUN dpkg --add-architecture arm64 +# RUN apt-get update && apt-get install --assume-yes libssl-dev:arm64 diff --git a/README.md b/README.md index 62f4e82..592ae2a 100644 --- a/README.md +++ b/README.md @@ -257,7 +257,7 @@ sequenceDiagram ### Initialization Phase -![Initialization Phase](docs/architecture-pathfinder-init.png) +![Initialization Phase](docs/architecture-pathfinder-init-phase.png) ### Main Loop