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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# will have compiled files and executables
debug/
target/
build/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Expand Down
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "crates/tree-sitter-verilog"]
path = crates/tree-sitter-verilog
url = https://github.com/BryanHeBY/tree-sitter-verilog.git
[submodule "crates/slang"]
path = crates/slang
url = https://github.com/hongjr03/slang.git
7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ syntax = { path = "./crates/syntax/", version = "0.0.0" }
utils = { path = "./crates/utils", version = "0.0.0" }
vfs = { path = "./crates/vfs", version = "0.0.0" }
vfs-notify = { path = "./crates/vfs-notify/", version = "0.0.0" }
slang = { path = "./crates/slang", version = "0.0.1" }
parking_lot = "0.12.1"


anyhow = "1.0.75"
bitflags = "2.9.0"
Expand All @@ -75,7 +78,6 @@ rustc-hash = "2.1.1"
salsa = "0.17.0-pre.2"
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
slang = { version = "0.0.1", path = "/Users/jiayanw/slang" }
smallvec = { version = "1.10.0", features = [
"const_new",
"union",
Expand Down Expand Up @@ -106,3 +108,6 @@ debug = 0
[profile.release-lto]
inherits = "release"
lto = true

[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3.9" }
5 changes: 4 additions & 1 deletion crates/hir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ edition.workspace = true

[dependencies]
base-db.workspace = true
hashbrown = { version = "0.12.3", features = ["inline-more"], default-features = false }
hashbrown = { version = "0.12.3", features = [
"inline-more",
], default-features = false }
itertools.workspace = true
la-arena.workspace = true
proc-macro-utils.workspace = true
Expand All @@ -17,3 +19,4 @@ syntax.workspace = true
triomphe.workspace = true
utils.workspace = true
vfs.workspace = true
slang.workspace = true
1 change: 1 addition & 0 deletions crates/slang
Submodule slang added at b6e546