We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd649f2 commit e6f7be6Copy full SHA for e6f7be6
curl-sys/Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "curl-sys"
3
-version = "0.4.77+curl-8.10.1"
+version = "0.4.78+curl-8.11.0"
4
authors = ["Alex Crichton <alex@alexcrichton.com>"]
5
links = "curl"
6
build = "build.rs"
curl-sys/build.rs
@@ -108,7 +108,7 @@ fn main() {
108
.replace("@LIBCURL_LIBS@", "")
109
.replace("@SUPPORT_FEATURES@", "")
110
.replace("@SUPPORT_PROTOCOLS@", "")
111
- .replace("@CURLVERSION@", "8.10.1"),
+ .replace("@CURLVERSION@", "8.11.0"),
112
)
113
.unwrap();
114
@@ -132,7 +132,7 @@ fn main() {
132
.define("ENABLE_IPV6", None)
133
.define("HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID", None)
134
.define("HAVE_ASSERT_H", None)
135
- .define("OS", "\"unknown\"") // TODO
+ .define("CURL_OS", "\"unknown\"") // TODO
136
.define("HAVE_ZLIB_H", None)
137
.define("HAVE_LONGLONG", None)
138
.define("HAVE_LIBZ", None)
@@ -236,6 +236,7 @@ fn main() {
236
.file("curl/lib/vtls/vtls.c")
237
.file("curl/lib/warnless.c")
238
.file("curl/lib/timediff.c")
239
+ .file("curl/lib/ws.c")
240
.define("HAVE_GETADDRINFO", None)
241
.define("HAVE_GETPEERNAME", None)
242
.define("HAVE_GETSOCKNAME", None)
curl-sys/curl
0 commit comments