Skip to content

Commit

Permalink
chore: Add logger as a workspace dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jpedroh committed Mar 11, 2024
1 parent 73e3da3 commit c3f4870
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 3 deletions.
7 changes: 7 additions & 0 deletions Cargo.lock

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

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ members = [
"merge",
"parsing",
"model"
]
]

[workspace.dependencies]
log = "0.4.20"
2 changes: 1 addition & 1 deletion bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ matching = { path = "../matching" }
matching_handlers = { path = "../matching_handlers" }
assert_cmd = "2.0.12"
clap = { version = "4.4.8", features = ["derive"] }
log = "0.4.20"
log = { workspace = true }
env_logger = "0.10.1"

[[bin]]
Expand Down
1 change: 1 addition & 0 deletions matching/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ edition = "2021"
model = { path = "../model" }
matching_handlers = { path = "../matching_handlers" }
unordered-pair = "0.2.4"
log = { workspace = true }
1 change: 1 addition & 0 deletions matching_handlers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ edition = "2021"

[dependencies]
model = { path = "../model" }
log = { workspace = true }
3 changes: 2 additions & 1 deletion merge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ edition = "2021"
model = { path = "../model" }
matching = { path = "../matching" }
matching_handlers = { path = "../matching_handlers" }
diffy = "0.3.0"
diffy = "0.3.0"
log = { workspace = true }
1 change: 1 addition & 0 deletions model/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
log = { workspace = true }
1 change: 1 addition & 0 deletions parsing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ edition = "2021"
tree-sitter = "0.20.9"
tree-sitter-java = "0.20.0"
model = { path = "../model" }
log = { workspace = true }

0 comments on commit c3f4870

Please sign in to comment.