Skip to content

Commit 04adf6d

Browse files
committed
Release 0.9.1-25
- Fix openssl cross compilation issue
1 parent fb7df56 commit 04adf6d

File tree

3 files changed

+3
-14
lines changed

3 files changed

+3
-14
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9-
## [0.9.1-24] - 2023-07-20
9+
## [0.9.1-25] - 2023-07-20
1010

1111
### Highlights
1212

crates/client/Cargo.toml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ readme = "../../README.md"
1212
chrono = { workspace = true }
1313
cynic = { workspace = true, features = ["http-reqwest"] }
1414
lazy_static = { workspace = true }
15+
openssl = { version = "0.10", features = ["vendored"] }
1516
portpicker = { workspace = true }
1617
reqwest = { workspace = true, features = ["json"] }
1718
serde = { workspace = true, features = [ "derive" ] }
@@ -24,18 +25,6 @@ inexor-rgf-core-config = { version = "0.9.1", path = "../core/config" }
2425
inexor-rgf-core-model = { version = "0.9.1", path = "../core/model" }
2526
inexor-rgf-model-runtime = { version = "0.9.1", path = "../model/runtime" }
2627

27-
[target.'cfg(target = "armv7-unknown-linux-gnueabihf")'.dependencies]
28-
openssl = { version = "0.10", features = ["vendored"] }
29-
30-
[target.'cfg(target = "aarch64-unknown-linux-gnu")'.dependencies]
31-
openssl = { version = "0.10", features = ["vendored"] }
32-
33-
[target.'cfg(target = "x86_64-unknown-linux-musl")'.dependencies]
34-
openssl = { version = "0.10", features = ["vendored"] }
35-
36-
[target.'cfg(target = "i686-unknown-linux-musl")'.dependencies]
37-
openssl = { version = "0.10", features = ["vendored"] }
38-
3928
[dev-dependencies]
4029
inexor-rgf-rt = { version = "0.9.1", path = "../runtime" }
4130
tokio = { workspace = true, features = ["macros", "time", "rt", "rt-multi-thread", "test-util"] }

crates/runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ path-tree = { workspace = true }
5858
portpicker = { workspace = true }
5959
rand = { workspace = true }
6060
rayon = { workspace = true }
61-
reqwest = { workspace = true }
61+
reqwest = { workspace = true, features = ["json"] }
6262
rust-embed = { workspace = true, features = ["debug-embed", "compression"] }
6363
rustls = { workspace = true }
6464
rustls-pemfile = { workspace = true }

0 commit comments

Comments
 (0)