From 44fad54b2f801b7acea02fd33e2e89c73338f673 Mon Sep 17 00:00:00 2001 From: Kevin K Date: Mon, 2 Jul 2018 10:59:08 -0400 Subject: [PATCH] chore: moves structopt files into temp dir --- .gitignore => old-structopt/.gitignore | 0 .travis.yml => old-structopt/.travis.yml | 0 CHANGELOG.md => old-structopt/CHANGELOG.md | 0 Cargo.toml => old-structopt/Cargo.toml | 0 LICENSE-APACHE => old-structopt/LICENSE-APACHE | 0 LICENSE-MIT => old-structopt/LICENSE-MIT | 0 README.md => old-structopt/README.md | 0 {examples => old-structopt/examples}/at_least_two.rs | 0 {examples => old-structopt/examples}/basic.rs | 0 {examples => old-structopt/examples}/deny_missing_docs.rs | 0 {examples => old-structopt/examples}/enum_in_args.rs | 0 {examples => old-structopt/examples}/enum_tuple.rs | 0 {examples => old-structopt/examples}/example.rs | 0 {examples => old-structopt/examples}/flatten.rs | 0 {examples => old-structopt/examples}/git.rs | 0 {examples => old-structopt/examples}/group.rs | 0 {examples => old-structopt/examples}/keyvalue.rs | 0 {examples => old-structopt/examples}/no_version.rs | 0 {examples => old-structopt/examples}/raw_attributes.rs | 0 {examples => old-structopt/examples}/simple_group.rs | 0 {examples => old-structopt/examples}/subcommand_aliases.rs | 0 {src => old-structopt/src}/lib.rs | 0 {structopt-derive => old-structopt/structopt-derive}/Cargo.toml | 0 .../structopt-derive}/LICENSE-APACHE | 0 {structopt-derive => old-structopt/structopt-derive}/LICENSE-MIT | 0 {structopt-derive => old-structopt/structopt-derive}/src/attrs.rs | 0 {structopt-derive => old-structopt/structopt-derive}/src/lib.rs | 0 {tests => old-structopt/tests}/arguments.rs | 0 {tests => old-structopt/tests}/author_version_about.rs | 0 {tests => old-structopt/tests}/custom-string-parsers.rs | 0 {tests => old-structopt/tests}/deny-warnings.rs | 0 {tests => old-structopt/tests}/doc-comments-help.rs | 0 {tests => old-structopt/tests}/flags.rs | 0 {tests => old-structopt/tests}/flatten.rs | 0 {tests => old-structopt/tests}/nested-subcommands.rs | 0 {tests => old-structopt/tests}/options.rs | 0 {tests => old-structopt/tests}/privacy.rs | 0 {tests => old-structopt/tests}/raw_attributes.rs | 0 {tests => old-structopt/tests}/subcommands.rs | 0 39 files changed, 0 insertions(+), 0 deletions(-) rename .gitignore => old-structopt/.gitignore (100%) rename .travis.yml => old-structopt/.travis.yml (100%) rename CHANGELOG.md => old-structopt/CHANGELOG.md (100%) rename Cargo.toml => old-structopt/Cargo.toml (100%) rename LICENSE-APACHE => old-structopt/LICENSE-APACHE (100%) rename LICENSE-MIT => old-structopt/LICENSE-MIT (100%) rename README.md => old-structopt/README.md (100%) rename {examples => old-structopt/examples}/at_least_two.rs (100%) rename {examples => old-structopt/examples}/basic.rs (100%) rename {examples => old-structopt/examples}/deny_missing_docs.rs (100%) rename {examples => old-structopt/examples}/enum_in_args.rs (100%) rename {examples => old-structopt/examples}/enum_tuple.rs (100%) rename {examples => old-structopt/examples}/example.rs (100%) rename {examples => old-structopt/examples}/flatten.rs (100%) rename {examples => old-structopt/examples}/git.rs (100%) rename {examples => old-structopt/examples}/group.rs (100%) rename {examples => old-structopt/examples}/keyvalue.rs (100%) rename {examples => old-structopt/examples}/no_version.rs (100%) rename {examples => old-structopt/examples}/raw_attributes.rs (100%) rename {examples => old-structopt/examples}/simple_group.rs (100%) rename {examples => old-structopt/examples}/subcommand_aliases.rs (100%) rename {src => old-structopt/src}/lib.rs (100%) rename {structopt-derive => old-structopt/structopt-derive}/Cargo.toml (100%) rename {structopt-derive => old-structopt/structopt-derive}/LICENSE-APACHE (100%) rename {structopt-derive => old-structopt/structopt-derive}/LICENSE-MIT (100%) rename {structopt-derive => old-structopt/structopt-derive}/src/attrs.rs (100%) rename {structopt-derive => old-structopt/structopt-derive}/src/lib.rs (100%) rename {tests => old-structopt/tests}/arguments.rs (100%) rename {tests => old-structopt/tests}/author_version_about.rs (100%) rename {tests => old-structopt/tests}/custom-string-parsers.rs (100%) rename {tests => old-structopt/tests}/deny-warnings.rs (100%) rename {tests => old-structopt/tests}/doc-comments-help.rs (100%) rename {tests => old-structopt/tests}/flags.rs (100%) rename {tests => old-structopt/tests}/flatten.rs (100%) rename {tests => old-structopt/tests}/nested-subcommands.rs (100%) rename {tests => old-structopt/tests}/options.rs (100%) rename {tests => old-structopt/tests}/privacy.rs (100%) rename {tests => old-structopt/tests}/raw_attributes.rs (100%) rename {tests => old-structopt/tests}/subcommands.rs (100%) diff --git a/.gitignore b/old-structopt/.gitignore similarity index 100% rename from .gitignore rename to old-structopt/.gitignore diff --git a/.travis.yml b/old-structopt/.travis.yml similarity index 100% rename from .travis.yml rename to old-structopt/.travis.yml diff --git a/CHANGELOG.md b/old-structopt/CHANGELOG.md similarity index 100% rename from CHANGELOG.md rename to old-structopt/CHANGELOG.md diff --git a/Cargo.toml b/old-structopt/Cargo.toml similarity index 100% rename from Cargo.toml rename to old-structopt/Cargo.toml diff --git a/LICENSE-APACHE b/old-structopt/LICENSE-APACHE similarity index 100% rename from LICENSE-APACHE rename to old-structopt/LICENSE-APACHE diff --git a/LICENSE-MIT b/old-structopt/LICENSE-MIT similarity index 100% rename from LICENSE-MIT rename to old-structopt/LICENSE-MIT diff --git a/README.md b/old-structopt/README.md similarity index 100% rename from README.md rename to old-structopt/README.md diff --git a/examples/at_least_two.rs b/old-structopt/examples/at_least_two.rs similarity index 100% rename from examples/at_least_two.rs rename to old-structopt/examples/at_least_two.rs diff --git a/examples/basic.rs b/old-structopt/examples/basic.rs similarity index 100% rename from examples/basic.rs rename to old-structopt/examples/basic.rs diff --git a/examples/deny_missing_docs.rs b/old-structopt/examples/deny_missing_docs.rs similarity index 100% rename from examples/deny_missing_docs.rs rename to old-structopt/examples/deny_missing_docs.rs diff --git a/examples/enum_in_args.rs b/old-structopt/examples/enum_in_args.rs similarity index 100% rename from examples/enum_in_args.rs rename to old-structopt/examples/enum_in_args.rs diff --git a/examples/enum_tuple.rs b/old-structopt/examples/enum_tuple.rs similarity index 100% rename from examples/enum_tuple.rs rename to old-structopt/examples/enum_tuple.rs diff --git a/examples/example.rs b/old-structopt/examples/example.rs similarity index 100% rename from examples/example.rs rename to old-structopt/examples/example.rs diff --git a/examples/flatten.rs b/old-structopt/examples/flatten.rs similarity index 100% rename from examples/flatten.rs rename to old-structopt/examples/flatten.rs diff --git a/examples/git.rs b/old-structopt/examples/git.rs similarity index 100% rename from examples/git.rs rename to old-structopt/examples/git.rs diff --git a/examples/group.rs b/old-structopt/examples/group.rs similarity index 100% rename from examples/group.rs rename to old-structopt/examples/group.rs diff --git a/examples/keyvalue.rs b/old-structopt/examples/keyvalue.rs similarity index 100% rename from examples/keyvalue.rs rename to old-structopt/examples/keyvalue.rs diff --git a/examples/no_version.rs b/old-structopt/examples/no_version.rs similarity index 100% rename from examples/no_version.rs rename to old-structopt/examples/no_version.rs diff --git a/examples/raw_attributes.rs b/old-structopt/examples/raw_attributes.rs similarity index 100% rename from examples/raw_attributes.rs rename to old-structopt/examples/raw_attributes.rs diff --git a/examples/simple_group.rs b/old-structopt/examples/simple_group.rs similarity index 100% rename from examples/simple_group.rs rename to old-structopt/examples/simple_group.rs diff --git a/examples/subcommand_aliases.rs b/old-structopt/examples/subcommand_aliases.rs similarity index 100% rename from examples/subcommand_aliases.rs rename to old-structopt/examples/subcommand_aliases.rs diff --git a/src/lib.rs b/old-structopt/src/lib.rs similarity index 100% rename from src/lib.rs rename to old-structopt/src/lib.rs diff --git a/structopt-derive/Cargo.toml b/old-structopt/structopt-derive/Cargo.toml similarity index 100% rename from structopt-derive/Cargo.toml rename to old-structopt/structopt-derive/Cargo.toml diff --git a/structopt-derive/LICENSE-APACHE b/old-structopt/structopt-derive/LICENSE-APACHE similarity index 100% rename from structopt-derive/LICENSE-APACHE rename to old-structopt/structopt-derive/LICENSE-APACHE diff --git a/structopt-derive/LICENSE-MIT b/old-structopt/structopt-derive/LICENSE-MIT similarity index 100% rename from structopt-derive/LICENSE-MIT rename to old-structopt/structopt-derive/LICENSE-MIT diff --git a/structopt-derive/src/attrs.rs b/old-structopt/structopt-derive/src/attrs.rs similarity index 100% rename from structopt-derive/src/attrs.rs rename to old-structopt/structopt-derive/src/attrs.rs diff --git a/structopt-derive/src/lib.rs b/old-structopt/structopt-derive/src/lib.rs similarity index 100% rename from structopt-derive/src/lib.rs rename to old-structopt/structopt-derive/src/lib.rs diff --git a/tests/arguments.rs b/old-structopt/tests/arguments.rs similarity index 100% rename from tests/arguments.rs rename to old-structopt/tests/arguments.rs diff --git a/tests/author_version_about.rs b/old-structopt/tests/author_version_about.rs similarity index 100% rename from tests/author_version_about.rs rename to old-structopt/tests/author_version_about.rs diff --git a/tests/custom-string-parsers.rs b/old-structopt/tests/custom-string-parsers.rs similarity index 100% rename from tests/custom-string-parsers.rs rename to old-structopt/tests/custom-string-parsers.rs diff --git a/tests/deny-warnings.rs b/old-structopt/tests/deny-warnings.rs similarity index 100% rename from tests/deny-warnings.rs rename to old-structopt/tests/deny-warnings.rs diff --git a/tests/doc-comments-help.rs b/old-structopt/tests/doc-comments-help.rs similarity index 100% rename from tests/doc-comments-help.rs rename to old-structopt/tests/doc-comments-help.rs diff --git a/tests/flags.rs b/old-structopt/tests/flags.rs similarity index 100% rename from tests/flags.rs rename to old-structopt/tests/flags.rs diff --git a/tests/flatten.rs b/old-structopt/tests/flatten.rs similarity index 100% rename from tests/flatten.rs rename to old-structopt/tests/flatten.rs diff --git a/tests/nested-subcommands.rs b/old-structopt/tests/nested-subcommands.rs similarity index 100% rename from tests/nested-subcommands.rs rename to old-structopt/tests/nested-subcommands.rs diff --git a/tests/options.rs b/old-structopt/tests/options.rs similarity index 100% rename from tests/options.rs rename to old-structopt/tests/options.rs diff --git a/tests/privacy.rs b/old-structopt/tests/privacy.rs similarity index 100% rename from tests/privacy.rs rename to old-structopt/tests/privacy.rs diff --git a/tests/raw_attributes.rs b/old-structopt/tests/raw_attributes.rs similarity index 100% rename from tests/raw_attributes.rs rename to old-structopt/tests/raw_attributes.rs diff --git a/tests/subcommands.rs b/old-structopt/tests/subcommands.rs similarity index 100% rename from tests/subcommands.rs rename to old-structopt/tests/subcommands.rs