From 7553d1f7232224830bc335e1882371ea738b7ccf Mon Sep 17 00:00:00 2001 From: Eguo Wang Date: Tue, 7 May 2024 23:12:15 +0800 Subject: [PATCH] fix: openssl-sys not found error --- Cargo.lock | 4 ++-- Cargo.toml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cc7bf1d..b06545f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -103,8 +103,8 @@ dependencies = [ [[package]] name = "amp-common" -version = "0.8.1" -source = "git+https://github.com/amphitheatre-app/common?tag=v0.8.1#d375db6b4e5a9e48bd4b561aa8b927d38e4ca3ea" +version = "0.8.2" +source = "git+https://github.com/amphitheatre-app/common?tag=v0.8.2#b560f0e938729a4cffb3ff9bdb9a7cb3ef8ed717" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 887ac4e..60ac56d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ members = [ # https://doc.rust-lang.org/cargo/reference/workspaces.html#the-workspacedependencies-table [workspace.dependencies] amp-builder = { path = "builder" } -amp-common = { git = "https://github.com/amphitheatre-app/common", tag = "v0.8.1" } +amp-common = { git = "https://github.com/amphitheatre-app/common", tag = "v0.8.2" } amp-resolver = { path = "resolver" } amp-resources = { path = "resources" } amp-workflow = { path = "workflow" } @@ -32,8 +32,8 @@ async-trait = "0.1.80" clap = { version = "4.5.4", features = ["derive", "env"] } dotenv = "0.15.0" futures = "0.3.30" -k8s-openapi = { version = "0.22.0", features = ["schemars", "v1_30"] } -kube = { version = "0.91.0", features = ["runtime", "derive", "rustls-tls"] } +k8s-openapi = { version = "0.22.0", default-features = false, features = ["schemars", "v1_30"] } +kube = { version = "0.91.0", default-features = false, features = ["runtime", "derive", "rustls-tls"] } lazy_static = "1.4.0" serde = { version = "1.0.200", features = ["derive"] } serde_json = "1.0.116"