diff --git a/garnet/public/rust/fuchsia-hyper/BUILD.gn b/garnet/public/rust/fuchsia-hyper/BUILD.gn
index e3cefe757bf190da942ae2fa5908cec672fb9319..232d0f552be2611a64f6f7bce23549ba8eed2999 100644
--- a/garnet/public/rust/fuchsia-hyper/BUILD.gn
+++ b/garnet/public/rust/fuchsia-hyper/BUILD.gn
@@ -14,7 +14,6 @@ rustc_library("fuchsia-hyper") {
   deps = [
     "//garnet/lib/rust/webpki-roots-fuchsia",
     "//garnet/public/rust/fuchsia-async",
-    "//third_party/rust_crates:ct-logs",
     "//third_party/rust_crates:futures-preview",
     "//third_party/rust_crates:hyper",
     "//third_party/rust_crates:hyper-rustls",
diff --git a/garnet/public/rust/fuchsia-hyper/src/lib.rs b/garnet/public/rust/fuchsia-hyper/src/lib.rs
index b71fda63838bafc3dd6757d7cf9392ee90841174..97c20ee77774af30c5217766b61abbbee724651c 100644
--- a/garnet/public/rust/fuchsia-hyper/src/lib.rs
+++ b/garnet/public/rust/fuchsia-hyper/src/lib.rs
@@ -91,7 +91,6 @@ pub fn new_https_client_dangerous(
 pub fn new_https_client() -> Client<hyper_rustls::HttpsConnector<HyperConnector>, Body> {
     let mut tls = rustls::ClientConfig::new();
     tls.root_store.add_server_trust_anchors(&webpki_roots_fuchsia::TLS_SERVER_ROOTS);
-    tls.ct_logs = Some(&ct_logs::LOGS);
     new_https_client_dangerous(tls)
 }