Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ snapbox = { version = "0.6.0", features = ["diff", "term-svg", "cmd"] }
# local
# we have to make the versions explicit otherwise `cargo publish` won't work
squawk-github = { path = "./crates/squawk_github", version = "2.27.0" }
squawk-ide = { path = "./crates/squawk_ide", version = "2.27.0" }
squawk-lexer = { path = "./crates/squawk_lexer", version = "2.27.0" }
squawk-parser = { path = "./crates/squawk_parser", version = "2.27.0" }
squawk-syntax = { path = "./crates/squawk_syntax", version = "2.27.0" }
Expand Down
20 changes: 20 additions & 0 deletions crates/squawk_ide/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[package]
name = "squawk-ide"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true

[dependencies]
squawk-syntax.workspace = true
rowan.workspace = true
line-index.workspace = true
annotate-snippets.workspace = true
log.workspace = true

[dev-dependencies]
insta.workspace = true

[lints]
workspace = true
Loading
Loading