We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b01b12a commit f468d3aCopy full SHA for f468d3a
ci/run.sh
@@ -29,6 +29,7 @@ if [ -z "$NO_RUN" ]; then
29
cargo test --target $TARGET $features
30
cargo test --target $TARGET --features static-curl $features
31
cargo test --target $TARGET --features static-curl,protocol-ftp $features
32
+ cargo test --target $TARGET --features mime $features
33
34
# Note that `-Clink-dead-code` is passed here to suppress `--gc-sections` to
35
# help confirm that we're compiling everything necessary for curl itself.
tests/mime.rs
@@ -1,3 +1,5 @@
1
+#![cfg(feature = "mime")]
2
+
3
use curl::{
4
easy::{ReadError, SeekResult},
5
mime::PartDataHandler,
0 commit comments