Created
December 9, 2019 17:34
-
-
Save jesusprubio/464028fad95d12d3a8f542bdac8e478c to your computer and use it in GitHub Desktop.
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
[package] | |
name = "online" | |
version = "0.2.0" | |
authors = ["Jesús Rubio <[email protected]>"] | |
edition = "2018" | |
documentation = "https://docs.rs/online" | |
include = ["src/**/*", "Cargo.toml"] | |
description = "📶 Library to check your Internet connectivity" | |
repository = "https://github.com/jesusprubio/online.git" | |
readme = "README.md" | |
keywords = [ | |
"connection", | |
"up", | |
"online", | |
"tcp", | |
"dns" | |
] | |
categories = ["network-programming"] | |
license = "MIT" | |
[badges] | |
travis-ci = { repository = "jesusprubio/online" } | |
[package.metadata.commands] | |
deps = "cargo install cargo-edit cargo-audit cargo-release cargo-outdated cargo-sync-readme && rustup component add rustfmt clippy" | |
format = "cargo fmt" | |
postformat = "cargo clippy" | |
readme = "cargo sync-readme" | |
pretest = "cargo cmd format && cargo outdated && cargo audit && cargo cmd readme" | |
test = "cargo test" | |
prepublish = "cargo cmd test" | |
publish = "cargo release minor" | |
[dependencies] | |
simple-error = "0.1.13" | |
[dev-dependencies] | |
pretty_assertions="0.6.1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment