From 7a0c68911ffbf647213c0eeb47c2ef3b76f641d9 Mon Sep 17 00:00:00 2001 From: ahaoboy <504595380@qq.com> Date: Thu, 9 May 2024 16:02:24 +0800 Subject: [PATCH] v0.2.1 --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- ansi2/Cargo.toml | 5 ++++- ansi2html/Cargo.toml | 6 ++++-- ansi2svg/Cargo.toml | 5 ++++- 5 files changed, 16 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d609268..c1f452d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,14 +4,14 @@ version = 3 [[package]] name = "ansi2" -version = "0.2.0" +version = "0.2.1" dependencies = [ "nom", ] [[package]] name = "ansi2html" -version = "0.2.0" +version = "0.2.1" dependencies = [ "ansi2", "html-escape", @@ -19,7 +19,7 @@ dependencies = [ [[package]] name = "ansi2svg" -version = "0.2.0" +version = "0.2.1" dependencies = [ "ansi2", "html-escape", diff --git a/Cargo.toml b/Cargo.toml index 5112043..bc1f8d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ cargo-dist-version = "0.14.1" # The installers to generate for each app installers = ["shell", "powershell"] # Target platforms to build apps for (Rust target-triple syntax) -targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"] +targets = ["x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"] # CI backends to support ci = "github" # Publish jobs to run in CI diff --git a/ansi2/Cargo.toml b/ansi2/Cargo.toml index 78e0ebb..1ad3d83 100644 --- a/ansi2/Cargo.toml +++ b/ansi2/Cargo.toml @@ -1,9 +1,12 @@ [package] name = "ansi2" -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "MIT" description = "ansi2" +repository = "https://github.com/ahaoboy/ansi2" +homepage = "https://github.com/ahaoboy/ansi2" +authors = ["ahaoboy"] [dependencies] nom = "7" diff --git a/ansi2html/Cargo.toml b/ansi2html/Cargo.toml index 25e2cfa..311540d 100644 --- a/ansi2html/Cargo.toml +++ b/ansi2html/Cargo.toml @@ -1,10 +1,12 @@ [package] -repository = "https://github.com/ahaoboy/ansi2" name = "ansi2html" -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "MIT" description = "ansi2html" +repository = "https://github.com/ahaoboy/ansi2" +homepage = "https://github.com/ahaoboy/ansi2" +authors = ["ahaoboy"] [dependencies] ansi2 = { version = "0.2", path = "../ansi2" } diff --git a/ansi2svg/Cargo.toml b/ansi2svg/Cargo.toml index c9d8fdd..3d0e5f0 100644 --- a/ansi2svg/Cargo.toml +++ b/ansi2svg/Cargo.toml @@ -1,9 +1,12 @@ [package] name = "ansi2svg" -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "MIT" description = "ansi2svg" +repository = "https://github.com/ahaoboy/ansi2" +homepage = "https://github.com/ahaoboy/ansi2" +authors = ["ahaoboy"] [dependencies] ansi2 = { version = "0.2", path = "../ansi2" }