scaffold-0.1.2 is not a library.
Visit the last successful build:
scaffold-0.5.1
Scaffold
Quickly add dependencies to your existing Rust project.
I find myself always scouring the internet or looking through old projects to find the same dependencies over and over. This is a tool I made to automate that process.
The help screen really says it all.
scaffold 0.1.0
Quickly add dependencies to your Rust project.
USAGE:
scaffold [FLAGS] [OPTIONS] <SUBCOMMAND>
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
-v, --verbose
OPTIONS:
--path <path> [default: Cargo.toml]
SUBCOMMANDS:
actix-web-server Add actix-web, actix-files, and actix-session.
cli Add structopt and config.
crate Add a crate.
crates Add multiple crates.
csv Add serde, serde_derive, and csv.
env-logger Add env_logger.
help Prints this message or the help of the given subcommand(s)
json Add serde, serde_derive, and serde_json.
regex Add regex, and lazy_static.
serde Add serde, and serde_derive.
toml Add serde, serde_derive, and toml.
web-client Add reqwest.
Examples:
Before:
[]
= "some_rust_project"
= "0.1.0"
= ["Kim Hermansson <h4xrk1m@gmail.com>"]
= "2018"
[]
After:
[]
= "empty-test-file"
= "0.1.0"
= ["Kim Hermansson <h4xrk1m@gmail.com>"]
= "2018"
[]
= "0.9.3"
= "1.0.102"
= "1.0.41"
= "0.3.4"
[]
= "1.0.102"
= ["derive"]
Let's say I also want the rand crate:
Or let's say I want the rand crate with the std feature:
Or maybe I want two extra crates: