Skip to content

Commit

Permalink
v0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmindlin committed Jul 10, 2024
1 parent 49b9fed commit 5b141ab
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ path = "src/main.rs"

[package]
name = "scoutlang"
version = "0.5.2"
version = "0.5.3"
edition = "2021"
repository = "https://github.com/maxmindlin/scout-lang"
description = "A web crawling programming language"
Expand All @@ -45,9 +45,9 @@ keywords = [

[dependencies]
futures = "0.3.30"
scout-interpreter = { version = "0.5.1", path = "./scout-interpreter/" }
scout-lexer = { version = "0.5.1", path = "./scout-lexer/" }
scout-parser = { version = "0.5.1", path = "./scout-parser/" }
scout-interpreter = { version = "0.5.3", path = "./scout-interpreter/" }
scout-lexer = { version = "0.5.3", path = "./scout-lexer/" }
scout-parser = { version = "0.5.3", path = "./scout-parser/" }
rustyline = "8.0.0"
colored = "2"
fantoccini = { version = "0.19.3", features = ["rustls-tls"] }
Expand Down
6 changes: 3 additions & 3 deletions scout-interpreter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scout-interpreter"
version = "0.5.2"
version = "0.5.3"
edition = "2021"
repository = "https://github.com/maxmindlin/scout-lang"
description = "A web crawling programming language"
Expand All @@ -17,13 +17,13 @@ keywords = [
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
scout-parser = { version = "0.5.1", path = "../scout-parser/" }
scout-parser = { version = "0.5.3", path = "../scout-parser/" }
fantoccini = "0.19.3"
futures = "0.3.30"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
image = "0.25.1"
scout-lexer = { version = "0.5.1", path = "../scout-lexer/" }
scout-lexer = { version = "0.5.3", path = "../scout-lexer/" }
url = "2.5.2"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion scout-lexer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scout-lexer"
version = "0.5.2"
version = "0.5.3"
edition = "2021"
repository = "https://github.com/maxmindlin/scout-lang"
description = "A web crawling programming language"
Expand Down
4 changes: 2 additions & 2 deletions scout-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scout-parser"
version = "0.5.2"
version = "0.5.3"
edition = "2021"
repository = "https://github.com/maxmindlin/scout-lang"
description = "A web crawling programming language"
Expand All @@ -17,7 +17,7 @@ keywords = [
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
scout-lexer = { version = "0.5.1", path = "../scout-lexer/" }
scout-lexer = { version = "0.5.3", path = "../scout-lexer/" }

[dev-dependencies]
test-case = "3.3.1"

0 comments on commit 5b141ab

Please sign in to comment.