Skip to content

Commit

Permalink
Switch to a [workspace]
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexodia committed Dec 17, 2024
1 parent f8d047e commit d60f1b3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
8 changes: 8 additions & 0 deletions Cargo.lock

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

9 changes: 7 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["tests"]
exclude = ["icicle-emu"]

[package]
name = "icicle-python"
Expand All @@ -9,13 +11,16 @@ edition = "2021"
name = "icicle"
crate-type = ["cdylib", "lib"]

[workspace.dependencies]
pyo3 = { version = "0.23.3", features = ["indexmap", "abi3-py37"] }

[dependencies]
pyo3 = { workspace = true }
icicle-cpu = { path = "icicle-emu/icicle-cpu" }
icicle-vm = { path = "icicle-emu/icicle-vm" }
pcode = { path = "icicle-emu/sleigh/pcode" }
sleigh-runtime = { path = "icicle-emu/sleigh/sleigh-runtime" }
indexmap = "2.2.6"
pyo3 = { version = "0.23.3", features = ["indexmap", "abi3-py37"] }
target-lexicon = "0.12.7"
tracing = "*"
tracing-subscriber = "0.3.17"
Expand Down
2 changes: 1 addition & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ path = "tests.rs"

[dependencies]
icicle-python = { path = "..", default-features = false }
pyo3 = { version = "*" }
pyo3 = { workspace = true }

0 comments on commit d60f1b3

Please sign in to comment.