Skip to content

Commit

Permalink
Merge branch 'main' into eyokota/protobuf
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n authored Jul 22, 2023
2 parents 7047b57 + ae47082 commit 0c1c71a
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 53 deletions.
74 changes: 33 additions & 41 deletions crates/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 crates/driver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ edition = "2021"
[dependencies]
anyhow = "1.0.72"
tokio = { version = "1.29.1", features = ["full"] }
clap = { version = "4.3.16", features = ["derive"] }
serde = { version = "1.0.173", features = ["derive"] }
clap = { version = "4.3.17", features = ["derive"] }
serde = { version = "1.0.174", features = ["derive"] }
serde_json = "1.0.103"
walkdir = "2.3.3"
futures = "0.3.28"
sha2 = { version = "0.10.7", features = ["asm"] }
thiserror = "1.0.43"
thiserror = "1.0.44"
lazy_static = "1.4.0"
ignore = "0.4.18"
rustpython-parser = { git = "https://github.com/RustPython/RustPython.git", rev = "b9ed63ed326e4ab9c97d808271ddc1d7ca05fda7"}
Expand All @@ -23,7 +23,7 @@ pretty_env_logger = "0.5.0"
log = "0.4.19"

[dev-dependencies]
tempfile = "3.6.0"
tempfile = "3.7.0"

[dependencies.bzl_gen_build_shared_types]
path = "../shared_types"
Expand Down
6 changes: 3 additions & 3 deletions crates/jarscanner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ edition = "2021"

[dependencies]
zip = "0.6.6"
serde = { version = "1.0.173", features = ["derive"] }
serde = { version = "1.0.174", features = ["derive"] }
serde_json = "1.0.103"
clap = { version = "4.3.16", features = ["derive"] }
tempfile = "3.6.0"
clap = { version = "4.3.17", features = ["derive"] }
tempfile = "3.7.0"
tokio = { version = "1.29.1", features = ["full"] }

[dependencies.bzl_gen_build_shared_types]
Expand Down
8 changes: 4 additions & 4 deletions crates/python_extractor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ edition = "2021"
[dependencies]
anyhow = "1.0.72"
tokio = { version = "1.29.1", features = ["full"] }
clap = { version = "4.3.16", features = ["derive"] }
serde = { version = "1.0.173", features = ["derive"] }
clap = { version = "4.3.17", features = ["derive"] }
serde = { version = "1.0.174", features = ["derive"] }
serde_json = "1.0.103"
walkdir = "2.3.3"
futures = "0.3.28"
sha2 = { version = "0.10.7", features = ["asm"] }
thiserror = "1.0.43"
thiserror = "1.0.44"
lazy_static = "1.4.0"
ignore = "0.4.18"
rustpython-parser = { git = "https://github.com/RustPython/RustPython.git", rev = "b9ed63ed326e4ab9c97d808271ddc1d7ca05fda7"}
Expand All @@ -22,7 +22,7 @@ pretty_env_logger = "0.5.0"
log = "0.4.19"

[dev-dependencies]
tempfile = "3.6.0"
tempfile = "3.7.0"

[dependencies.bzl_gen_build_shared_types]
path = "../shared_types"
Expand Down
2 changes: 1 addition & 1 deletion crates/shared_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
nom = "7.1.1"
serde = { version = "1.0.173", features = ["derive"] }
serde = { version = "1.0.174", features = ["derive"] }
serde_json = "1.0.103"
# Todo remove this and use a proper error for the library
anyhow = "1.0.72"

0 comments on commit 0c1c71a

Please sign in to comment.