diff options
| author | Bond_009 <bond.009@outlook.com> | 2020-11-19 16:26:25 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2020-11-19 16:26:25 +0100 |
| commit | 5a4cd9b086515a9ca9d8b005b2e9b3895ca8d20f (patch) | |
| tree | db54aec6d29e3ba7b55431b9d50bdfc51c4c8a66 /Cargo.toml | |
| parent | 9868c05f76f32d96d9dd5e3624fc71ee75994ccd (diff) | |
Reduce the amount of dependecies
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 22 |
1 files changed, 20 insertions, 2 deletions
@@ -5,10 +5,28 @@ authors = ["Bond_009 <bond.009@outlook.com>"] edition = "2018" [dependencies] -clap = "^2.33" -git2 = "^0.13" toml = "^0.5" +[dependencies.clap] +version = "^2.33" +default-features = false +features = ["color", "vec_map"] + +[dependencies.git2] +version = "^0.13" +default-features = false +features = ["https"] + +[dependencies.git2_credentials] +version = "^0.7" +optional = true +default-features = false + [dependencies.serde] version = "^1.0" +default-features = false features = ["derive"] + +[features] +default = [] +ssh = ["git2/ssh", "git2_credentials"] |
