Hello

This is truck, a package which generates a cargo toml for you

  1. You just create a truck.rs
  2. Put this in cargo.toml

```toml

build = "truck.rs" [build-dependencies] truck = "1.0.0"

```

  1. And wrtie this in your build.rs

```rust use truck::prelude; fn main() { CargoConf::new() .author( &["Jakob Nikolaus Neufeld"] ).edition("2018") .name("truck") .version("0.0.1") .license("MIT") .dependenciesection() .dependencie("toml", DepVersion::Version("0.5.6")) .dependencie("crates-io", "0.32.0") .writeto_cargo() ;

} ```

YOU ARE DONE!

Please report any bugs at jakob.n.neufeld@gmail.com

Also more features are coming like