diff options
author | Valentin Popov <valentin@popov.link> | 2024-01-11 19:29:23 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-01-11 19:29:23 +0300 |
commit | 5c89b37d49ee3eed6f520dd26e0409b65af6993d (patch) | |
tree | 760e07c4150e933aa0983c08f0bc14647c3162e9 /Cargo.toml | |
parent | 1a62f521d5a5677bc6f31757be7cff5e9fde1487 (diff) | |
download | gitlab-duplicator-5c89b37d49ee3eed6f520dd26e0409b65af6993d.tar.xz gitlab-duplicator-5c89b37d49ee3eed6f520dd26e0409b65af6993d.zip |
Initial CLI interface
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,8 +1,13 @@ [package] name = "git-repository-mirror-creator" -version = "0.1.0" +version = "0.0.1" edition = "2021" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[profile.release] +codegen-units = 1 +lto = true +strip = true [dependencies] +clap = { version = "4.4.0", features = ["derive"] } +gitlab = "=0.1408.0" |