Skip to content

Commit

Permalink
Use versioned path dependencies
Browse files Browse the repository at this point in the history
This is required for publishing
  • Loading branch information
fwcd committed Aug 9, 2023
1 parent 37d252c commit 1c25035
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
nuit-derive = { path = "nuit-derive" }
nuit-core = { path = "nuit-core" }
nuit-derive = { version = "0.0.1", path = "nuit-derive" }
nuit-core = { version = "0.0.1", path = "nuit-core" }

[target.'cfg(target_os = "macos")'.dependencies]
nuit-bridge-swiftui = { path = "nuit-bridge-swiftui" }
nuit-bridge-swiftui = { version = "0.0.1", path = "nuit-bridge-swiftui" }

[workspace]
members = [
Expand Down
2 changes: 1 addition & 1 deletion nuit-bridge-swiftui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ serde_json = "1.0"
path = "rust/lib.rs"

[dependencies]
nuit-core = { path = "../nuit-core" }
nuit-core = { version = "0.0.1", path = "../nuit-core" }

0 comments on commit 1c25035

Please sign in to comment.