Skip to content

Commit

Permalink
fix: use path dependencies instead of workspace deps (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal authored Sep 2, 2023
1 parent 78f64fb commit 765667a
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ exclude = ["test/*"]

[workspace.dependencies]
loam-sdk = { path = "./crates/loam-sdk" }
loam-build = { path = "./crates/loam-build"}
loam-build = { path = "./crates/loam-build" }
loam-sdk-core-riff = { path = "./crates/loam-core" }
loam-soroban-sdk = { path = "./crates/loam-soroban"}
loam-sdk-macro = { path = "./crates/loam-sdk-macro"}
loam-sdk-ft = { path = "./crates/loam-ft"}
loam-soroban-sdk = { path = "./crates/loam-soroban-sdk" }
loam-sdk-macro = { path = "./crates/loam-sdk-macro" }
loam-sdk-ft = { path = "./crates/loam-ft" }

cargo_metadata = "0.15.4"
thiserror = "1.0.38"
Expand Down
2 changes: 1 addition & 1 deletion crates/loam-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ path = "src/lib.rs"
doctest = false

[dependencies]
loam-build = { workspace = true, version = "0.6.4" }
loam-build = { path = "../loam-build", version = "0.6.4" }
clap = { version = "4.1.8", features = [
"derive",
"env",
Expand Down
2 changes: 1 addition & 1 deletion crates/loam-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "Apache-2.0"


[dependencies]
loam-sdk = { workspace = true, version = "0.6.3", features = [
loam-sdk = { path = "../loam-sdk", version = "0.6.3", features = [
"loam-soroban-sdk",
] }

Expand Down
2 changes: 1 addition & 1 deletion crates/loam-ft/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "Apache-2.0"


[dependencies]
loam-sdk = { workspace = true, version = "0.6.3", features = [
loam-sdk = { path = "../loam-sdk", version = "0.6.3", features = [
"loam-soroban-sdk",
] }

Expand Down
2 changes: 1 addition & 1 deletion crates/loam-sdk-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "Apache-2.0"
proc-macro = true

[dependencies]
loam-build = { workspace = true, version = "0.6.4" }
loam-build = { path = "../loam-build", version = "0.6.5" }
proc-macro2 = "1.0"
syn = { version = "2", features = ["full", "fold", "extra-traits", "visit"] }
quote = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/loam-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ crate-type = ["rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
loam-sdk-macro = { workspace = true, version = "0.6.3" }
loam-soroban-sdk = { workspace = true, version = "0.6.3", optional = true }
loam-sdk-macro = { path = "../loam-sdk-macro", version = "0.6.4" }
loam-soroban-sdk = { path = "../loam-soroban-sdk", version = "0.6.4", optional = true }


[features]
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ crate-type = ["rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
loam-sdk-macro = { workspace = true, version = "0.6.3" }
loam-sdk-macro = { path = "../loam-sdk-macro", version = "0.6.4" }

[dependencies.soroban-sdk]
version = "0.9.2"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 765667a

Please sign in to comment.