Bumped AbleScript version

+ chore: update
+ clap minor update
+ change repo URLs
trunk
ondra05 2022-07-02 00:19:44 +02:00
parent 43439b7e58
commit 17713e3197
3 changed files with 14 additions and 14 deletions

16
Cargo.lock generated
View File

@ -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"

View File

@ -1,13 +1,13 @@
[package]
name = "ablescript"
version = "0.4.0"
version = "0.5.0"
authors = ["able <abl3theabove@gmail.com>"]
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"

View File

@ -1,16 +1,16 @@
[package]
name = "ablescript_cli"
version = "0.4.0"
version = "0.5.0"
authors = ["able <abl3theabove@gmail.com>"]
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"