curl 0.4.21

Rust bindings to libcurl for making HTTP requests
Documentation
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -ex

cargo test --target $TARGET --no-run
if [ -z "$NO_RUN" ]; then
    cargo test --target $TARGET
    cargo run --manifest-path systest/Cargo.toml --target $TARGET
    cargo doc --no-deps --target $TARGET
    cargo doc --no-deps -p curl-sys --target $TARGET
fi