blob: cf3ba0fd1196865d33a4767405b8ec003c1c6d7a [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/package.gni")
import("//build/rust/rustc_library.gni")
import("//build/test/test_package.gni")
rustc_library("httpdate-hyper") {
name = "httpdate-hyper"
version = "0.1.0"
edition = "2018"
with_unit_tests = true
deps = [
"//garnet/lib/rust/webpki-roots-fuchsia",
"//garnet/public/rust/fuchsia-hyper",
"//src/lib/fuchsia-async",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:chrono",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:hyper",
"//third_party/rust_crates:lazy_static",
"//third_party/rust_crates:rustls",
"//third_party/rust_crates:thiserror",
"//third_party/rust_crates:webpki",
]
}
test_package("httpdate-hyper-tests") {
deps = [ ":httpdate-hyper_test" ]
tests = [
{
name = "httpdate_hyper_lib_test"
},
]
}