Skip to content

Commit 3445a2f

Browse files
committed
rust: compilation crate part of bear
1 parent a0ba2a9 commit 3445a2f

File tree

13 files changed

+234
-181
lines changed

13 files changed

+234
-181
lines changed

rust/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
members = [
33
"bear",
44
"intercept",
5-
"semantic",
6-
"json_compilation_db"
5+
"semantic"
76
]
87
resolver = "2"
98

rust/bear/Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,17 @@ homepage.workspace = true
99
license.workspace = true
1010
edition.workspace = true
1111

12+
[lib]
13+
name = "bear"
14+
path = "src/lib.rs"
15+
1216
[[bin]]
1317
name = "bear"
14-
path = "src/main.rs"
18+
path = "src/bin/main.rs"
1519

1620
[dependencies]
1721
intercept = { path = "../intercept" }
1822
semantic = { path = "../semantic" }
19-
json_compilation_db = { path = "../json_compilation_db" }
2023
thiserror.workspace = true
2124
anyhow.workspace = true
2225
lazy_static.workspace = true
@@ -29,3 +32,4 @@ chrono.workspace = true
2932
log.workspace = true
3033
env_logger.workspace = true
3134
path-absolutize.workspace = true
35+
shell-words.workspace = true

0 commit comments

Comments
 (0)