Bumped AbleScript version
+ chore: update + clap minor update + change repo URLs
This commit is contained in:
parent
83b25b2b89
commit
24c5ada994
16
Cargo.lock
generated
16
Cargo.lock
generated
|
@ -4,7 +4,7 @@ version = 3
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ablescript"
|
name = "ablescript"
|
||||||
version = "0.4.0"
|
version = "0.5.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"logos",
|
"logos",
|
||||||
"rand",
|
"rand",
|
||||||
|
@ -12,7 +12,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ablescript_cli"
|
name = "ablescript_cli"
|
||||||
version = "0.4.0"
|
version = "0.5.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ablescript",
|
"ablescript",
|
||||||
"clap",
|
"clap",
|
||||||
|
@ -62,9 +62,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "clap"
|
name = "clap"
|
||||||
version = "3.2.6"
|
version = "3.2.8"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "9f1fe12880bae935d142c8702d500c63a4e8634b6c3c57ad72bf978fc7b6249a"
|
checksum = "190814073e85d238f31ff738fcb0bf6910cedeb73376c87cd69291028966fd83"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atty",
|
"atty",
|
||||||
"bitflags",
|
"bitflags",
|
||||||
|
@ -77,9 +77,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "clap_lex"
|
name = "clap_lex"
|
||||||
version = "0.2.3"
|
version = "0.2.4"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "87eba3c8c7f42ef17f6c659fc7416d0f4758cd3e58861ee63c5fa4a4dde649e4"
|
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"os_str_bytes",
|
"os_str_bytes",
|
||||||
]
|
]
|
||||||
|
@ -435,9 +435,9 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "smallvec"
|
name = "smallvec"
|
||||||
version = "1.8.0"
|
version = "1.9.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
|
checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "str-buf"
|
name = "str-buf"
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ablescript"
|
name = "ablescript"
|
||||||
version = "0.4.0"
|
version = "0.5.0"
|
||||||
authors = ["able <abl3theabove@gmail.com>"]
|
authors = ["able <abl3theabove@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
description = "The best programming language"
|
description = "The best programming language"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
documentation = "https://ablecorp.us/able-script-the-book/"
|
documentation = "https://ablecorp.us/able-script-the-book/"
|
||||||
repository = "https://github.com/AbleCorp/able-script"
|
repository = "https://git.ablecorp.us/AbleScript/able-script"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
logos = "0.12"
|
logos = "0.12"
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ablescript_cli"
|
name = "ablescript_cli"
|
||||||
version = "0.4.0"
|
version = "0.5.0"
|
||||||
authors = ["able <abl3theabove@gmail.com>"]
|
authors = ["able <abl3theabove@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
description = "The best programming language"
|
description = "The best programming language"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
documentation = "https://ablecorp.us/able-script-the-book/"
|
documentation = "https://ablecorp.us/able-script-the-book/"
|
||||||
repository = "https://github.com/AbleCorp/able-script"
|
repository = "https://git.ablecorp.us/AbleScript/able-script"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ablescript = { version = "0.4.0", path = "../ablescript" }
|
ablescript = { version = "0.5.0", path = "../ablescript" }
|
||||||
|
|
||||||
clap = "3.1"
|
clap = "3.2"
|
||||||
rustyline = "9.1"
|
rustyline = "9.1"
|
||||||
|
|
Loading…
Reference in a new issue