diff --git a/.builds/linux.yml b/.builds/linux.yml deleted file mode 100644 index a574963d..00000000 --- a/.builds/linux.yml +++ /dev/null @@ -1,21 +0,0 @@ -image: archlinux -sources: - - https://github.com/alacritty/vte -tasks: - - rustup: | - curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable --profile minimal -c clippy - - stable: | - cd vte - $HOME/.cargo/bin/cargo +stable test - - clippy: | - cd vte - $HOME/.cargo/bin/cargo +stable clippy - - rustfmt: | - $HOME/.cargo/bin/rustup toolchain install nightly -c rustfmt - cd vte - $HOME/.cargo/bin/cargo +nightly fmt -- --check - - 1-56-0: | - $HOME/.cargo/bin/rustup toolchain install --profile minimal 1.56.0 - cd vte - rm Cargo.lock - $HOME/.cargo/bin/cargo +1.56.0 test diff --git a/.gitignore b/.gitignore deleted file mode 100644 index a9d37c56..00000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -target -Cargo.lock diff --git a/CHANGELOG.md b/crates/anstyle-parse/CHANGELOG.md similarity index 100% rename from CHANGELOG.md rename to crates/anstyle-parse/CHANGELOG.md diff --git a/Cargo.toml b/crates/anstyle-parse/Cargo.toml similarity index 100% rename from Cargo.toml rename to crates/anstyle-parse/Cargo.toml diff --git a/LICENSE-APACHE b/crates/anstyle-parse/LICENSE-APACHE similarity index 100% rename from LICENSE-APACHE rename to crates/anstyle-parse/LICENSE-APACHE diff --git a/LICENSE-MIT b/crates/anstyle-parse/LICENSE-MIT similarity index 100% rename from LICENSE-MIT rename to crates/anstyle-parse/LICENSE-MIT diff --git a/README.md b/crates/anstyle-parse/README.md similarity index 100% rename from README.md rename to crates/anstyle-parse/README.md diff --git a/examples/parselog.rs b/crates/anstyle-parse/examples/parselog.rs similarity index 100% rename from examples/parselog.rs rename to crates/anstyle-parse/examples/parselog.rs diff --git a/src/definitions.rs b/crates/anstyle-parse/src/definitions.rs similarity index 100% rename from src/definitions.rs rename to crates/anstyle-parse/src/definitions.rs diff --git a/src/lib.rs b/crates/anstyle-parse/src/lib.rs similarity index 100% rename from src/lib.rs rename to crates/anstyle-parse/src/lib.rs diff --git a/src/params.rs b/crates/anstyle-parse/src/params.rs similarity index 100% rename from src/params.rs rename to crates/anstyle-parse/src/params.rs diff --git a/src/table.rs b/crates/anstyle-parse/src/table.rs similarity index 100% rename from src/table.rs rename to crates/anstyle-parse/src/table.rs diff --git a/tests/demo.vte b/crates/anstyle-parse/tests/demo.vte similarity index 100% rename from tests/demo.vte rename to crates/anstyle-parse/tests/demo.vte