Skip to content

Commit

Permalink
v0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmindlin committed Aug 19, 2024
1 parent 8e327ff commit 72e56ea
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
12 changes: 6 additions & 6 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 @@ -24,7 +24,7 @@ path = "src/main.rs"

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

[dependencies]
futures = "0.3.30"
scout-interpreter = { version = "0.7.1", path = "./scout-interpreter/" }
scout-lexer = { version = "0.7.1", path = "./scout-lexer/" }
scout-parser = { version = "0.7.1", path = "./scout-parser/" }
scout-interpreter = { version = "0.7.2", path = "./scout-interpreter/" }
scout-lexer = { version = "0.7.2", path = "./scout-lexer/" }
scout-parser = { version = "0.7.2", path = "./scout-parser/" }
rustyline = "8.0.0"
fantoccini = { version = "0.19.3", features = ["rustls-tls"] }
tokio = { version = "1", features = ["full"] }
Expand Down
8 changes: 4 additions & 4 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.7.1"
version = "0.7.2"
edition = "2021"
repository = "https://github.com/maxmindlin/scout-lang"
description = "A web crawling programming language"
Expand All @@ -17,14 +17,14 @@ keywords = [
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
scout-parser = { version = "0.7.1", path = "../scout-parser/" }
scout-json = { version = "0.7.1", path = "../scout-json" }
scout-parser = { version = "0.7.2", path = "../scout-parser/" }
scout-json = { version = "0.7.2", path = "../scout-json" }
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.7.1", path = "../scout-lexer/" }
scout-lexer = { version = "0.7.2", path = "../scout-lexer/" }
url = "2.5.2"
reqwest = { version = "0.12", features = ["json", "cookies"] }
envy = "0.4.2"
Expand Down
4 changes: 2 additions & 2 deletions scout-json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scout-json"
version = "0.7.1"
version = "0.7.2"
edition = "2021"
repository = "https://github.com/maxmindlin/scout-lang"
description = "JSON representation of ScoutLang AST"
Expand All @@ -15,7 +15,7 @@ keywords = [
]

[dependencies]
scout-parser = { version = "0.7.1", path = "../scout-parser/" }
scout-parser = { version = "0.7.2", path = "../scout-parser/" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

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.7.1"
version = "0.7.2"
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.7.1"
version = "0.7.2"
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.7.1", path = "../scout-lexer/" }
scout-lexer = { version = "0.7.2", path = "../scout-lexer/" }

[dev-dependencies]
test-case = "3.3.1"
4 changes: 2 additions & 2 deletions scout-worker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scout-worker"
version = "0.7.1"
version = "0.7.2"
edition = "2021"
repository = "https://github.com/maxmindlin/scout-lang"
description = "A worker framework for ScoutLang"
Expand All @@ -15,7 +15,7 @@ keywords = [
]

[dependencies]
scout-interpreter = { version = "0.7.1", path = "../scout-interpreter/" }
scout-interpreter = { version = "0.7.2", path = "../scout-interpreter/" }
actix-web = "4"
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0.203", features = ["derive"] }
Expand Down

0 comments on commit 72e56ea

Please sign in to comment.