-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from sagebind/rebrand
After much deliberation the new project name is ready! Naming things is hard, but still, I don't think we'll have to pick a name again after this one time. - Rename crate from `chttp` to `isahc` and update referenced wherever they are used. - Introduce a new mascot for the project. - Bump version to 0.6. - Update and expand the project readme. - Update license year. Fixes #36.
- Loading branch information
Showing
26 changed files
with
389 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "chttp" | ||
version = "0.5.4" | ||
name = "isahc" | ||
version = "0.6.0" | ||
description = "The practical HTTP client that is fun to use." | ||
authors = ["Stephen M. Coakley <[email protected]>"] | ||
license = "MIT" | ||
keywords = ["http", "request", "client", "async", "curl"] | ||
categories = ["web-programming::http-client"] | ||
repository = "https://github.com/sagebind/chttp" | ||
documentation = "https://docs.rs/chttp/" | ||
repository = "https://github.com/sagebind/isahc" | ||
documentation = "https://docs.rs/isahc/" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
//! A simple example that prints the version of chttp and libcurl being used. | ||
//! A simple example that prints the version of isahc and libcurl being used. | ||
//! | ||
//! This example is useful to run on various systems when troubleshooting | ||
//! version-related issues. | ||
fn main() { | ||
println!("version: {}", chttp::version()); | ||
println!("version: {}", isahc::version()); | ||
} |
Oops, something went wrong.