diff options
-rw-r--r-- | utils/Cargo.lock | 24 | ||||
-rw-r--r-- | utils/Cargo.toml | 2 | ||||
-rw-r--r-- | utils/src/main.rs | 1 |
3 files changed, 13 insertions, 14 deletions
diff --git a/utils/Cargo.lock b/utils/Cargo.lock index d060ca7..244d1f1 100644 --- a/utils/Cargo.lock +++ b/utils/Cargo.lock @@ -1473,18 +1473,6 @@ dependencies = [ ] [[package]] -name = "rust" -version = "0.1.0" -dependencies = [ - "age", - "secrecy", - "serde", - "serde_dhall", - "serde_json", - "structopt", -] - -[[package]] name = "rust-embed" version = "5.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1775,6 +1763,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2" [[package]] +name = "survey-generate" +version = "0.1.0" +dependencies = [ + "age", + "secrecy", + "serde", + "serde_dhall", + "serde_json", + "structopt", +] + +[[package]] name = "syn" version = "1.0.68" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/utils/Cargo.toml b/utils/Cargo.toml index 566d604..e959f55 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "rust" +name = "survey-generate" version = "0.1.0" authors = ["stuebinm <stuebinm@disroot.org>"] edition = "2018" diff --git a/utils/src/main.rs b/utils/src/main.rs index ff5f86f..3d6f885 100644 --- a/utils/src/main.rs +++ b/utils/src/main.rs @@ -35,7 +35,6 @@ enum AnswerSpace { } #[derive(StructOpt, Debug)] -#[structopt(name = "basic")] struct Options { /// a dhall configuration file that describes a survey #[structopt(long, short, parse(from_os_str))] |