From 4e912c1e6b2d092baa237ea46085b56cad90a946 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=A3rebe=20-=20Romain=20GERARD?= Date: Sat, 25 May 2024 11:05:51 +0200 Subject: [PATCH] Test using arc_lc for darwin --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cc96747..2486ffc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,9 +46,9 @@ socket2 = { version = "0.5.7", features = [] } tokio = { version = "1.37.0", features = ["full"] } tokio-stream = { version = "0.1.15", features = ["net"] } -[target.'cfg(any(os = "linux", os = "darwin"))'.dependencies] +[target.'cfg(any(targt_os = "linux", target_os = "macos"))'.dependencies] tokio-rustls = { version = "0.26.0", features = [] } -[target.'cfg(not(any(os = "linux", os = "darwin")))'.dependencies] +[target.'cfg(not(any(target_os = "linux", target_os = "macos")))'.dependencies] tokio-rustls = { version = "0.26.0", default-features = false, features = ["logging", "tls12", "ring"] } tracing = { version = "0.1.40", features = ["log"] }