Skip to content
Open
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
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ edition = "2024"

[dependencies]
base-db.workspace = true
fusesoc-model.workspace = true
hir-def.workspace = true
ide.workspace = true
preproc-expand.workspace = true
Expand Down Expand Up @@ -55,6 +56,7 @@ triomphe.workspace = true

[workspace.dependencies]
base-db = { path = "./crates/base-db/", version = "0.0.0" }
fusesoc-model = { path = "./crates/fusesoc-model", version = "0.0.0" }
hir-def = { path = "./crates/hir-def/", version = "0.0.0" }
hir-semantics = { path = "./crates/hir-semantics/", version = "0.0.0" }
hir-ty = { path = "./crates/hir-ty/", version = "0.0.0" }
Expand Down Expand Up @@ -108,6 +110,7 @@ toml_edit = "0.22.27"
toml_parser = "=1.1.2"
tracing = "0.1.37"
triomphe = "0.1.9"
saphyr = "0.0.11"
winapi = { version = "0.3.9", features = ["processthreadsapi"] }

[profile.dev]
Expand Down
14 changes: 14 additions & 0 deletions crates/fusesoc-model/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
name = "fusesoc-model"
version = "0.0.0"
description = "FuseSoC CLI EDAM integration"
edition.workspace = true

[dependencies]
serde.workspace = true
serde_yaml_ng = "0.10"
thiserror.workspace = true
tracing.workspace = true
tempfile.workspace = true
utils = { workspace = true, features = ["camino_serde1"] }
saphyr.workspace = true
Loading
Loading