From 17713e319731c871c7b202053032807157a377dd Mon Sep 17 00:00:00 2001 From: ondra05 Date: Sat, 2 Jul 2022 00:19:44 +0200 Subject: [PATCH] Bumped AbleScript version + chore: update + clap minor update + change repo URLs --- Cargo.lock | 16 ++++++++-------- ablescript/Cargo.toml | 4 ++-- ablescript_cli/Cargo.toml | 8 ++++---- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9478c89..90e98a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "ablescript" -version = "0.4.0" +version = "0.5.0" dependencies = [ "logos", "rand", @@ -12,7 +12,7 @@ dependencies = [ [[package]] name = "ablescript_cli" -version = "0.4.0" +version = "0.5.0" dependencies = [ "ablescript", "clap", @@ -62,9 +62,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "3.2.6" +version = "3.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f1fe12880bae935d142c8702d500c63a4e8634b6c3c57ad72bf978fc7b6249a" +checksum = "190814073e85d238f31ff738fcb0bf6910cedeb73376c87cd69291028966fd83" dependencies = [ "atty", "bitflags", @@ -77,9 +77,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87eba3c8c7f42ef17f6c659fc7416d0f4758cd3e58861ee63c5fa4a4dde649e4" +checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" dependencies = [ "os_str_bytes", ] @@ -435,9 +435,9 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" [[package]] name = "smallvec" -version = "1.8.0" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83" +checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1" [[package]] name = "str-buf" diff --git a/ablescript/Cargo.toml b/ablescript/Cargo.toml index 61280ba..5c1994a 100644 --- a/ablescript/Cargo.toml +++ b/ablescript/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "ablescript" -version = "0.4.0" +version = "0.5.0" authors = ["able "] edition = "2021" description = "The best programming language" license = "MIT" documentation = "https://ablecorp.us/able-script-the-book/" -repository = "https://github.com/AbleCorp/able-script" +repository = "https://git.ablecorp.us/AbleScript/able-script" [dependencies] logos = "0.12" diff --git a/ablescript_cli/Cargo.toml b/ablescript_cli/Cargo.toml index 9332803..04b7874 100644 --- a/ablescript_cli/Cargo.toml +++ b/ablescript_cli/Cargo.toml @@ -1,16 +1,16 @@ [package] name = "ablescript_cli" -version = "0.4.0" +version = "0.5.0" authors = ["able "] edition = "2021" description = "The best programming language" license = "MIT" documentation = "https://ablecorp.us/able-script-the-book/" -repository = "https://github.com/AbleCorp/able-script" +repository = "https://git.ablecorp.us/AbleScript/able-script" [dependencies] -ablescript = { version = "0.4.0", path = "../ablescript" } +ablescript = { version = "0.5.0", path = "../ablescript" } -clap = "3.1" +clap = "3.2" rustyline = "9.1"