32 lines
562 B
TOML
32 lines
562 B
TOML
[build]
|
|
type = "autotools"
|
|
|
|
[build.flags]
|
|
configure = [
|
|
"--with-libbrotlienc",
|
|
"--with-libbrotlidec",
|
|
"--with-gnutls",
|
|
"--enable-lib-only",
|
|
]
|
|
skip_tests = true
|
|
|
|
[dependencies]
|
|
build = ["brotli"]
|
|
runtime = [
|
|
"glibc",
|
|
"openssl",
|
|
"gnutls",
|
|
]
|
|
|
|
[package]
|
|
description = "Implementation of IETF QUIC protocol"
|
|
homepage = "https://github.com/ngtcp2/ngtcp2"
|
|
license = "MIT"
|
|
name = "libngtcp2"
|
|
version = "1.21.0"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
post_extract = ["autoreconf -i"]
|
|
url = "https://github.com/ngtcp2/ngtcp2.git#v$version"
|