Skip to content

Commit

Permalink
fix: add versions to workspace deps in root Cargo.toml (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal authored Aug 31, 2023
1 parent 37c577c commit 8ada45a
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ version = "0.6.2"


[workspace.dependencies]
loam-sdk = { path = "./crates/loam-sdk" }
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-sdk = { path = "./crates/loam-sdk", version = "*" }
loam-build = { path = "./crates/loam-build", version = "*"}
loam-sdk-core-riff = { path = "./crates/loam-core", version = "*" }
loam-soroban-sdk = { path = "./crates/loam-soroban", version = "*"}
loam-sdk-macro = { path = "./crates/loam-sdk-macro", version = "*"}
loam-sdk-ft = { path = "./crates/loam-ft", version = "*"}

cargo_metadata = "0.15.4"
thiserror = "1.0.38"
Expand Down
4 changes: 2 additions & 2 deletions crates/loam-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ homepage = "https://github.com/loambuild/loam-sdk"
repository = "https://github.com/loambuild/loam-sdk"
authors = ["Willem Wyndham <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
readme = "../../README.md"
version.workspace = true
edition = "2021"
rust-version = "1.70"
Expand All @@ -27,7 +27,7 @@ path = "src/lib.rs"
doctest = false

[dependencies]
loam-build = { workspace = true, version = "0.6.2" }
loam-build = { workspace = true }
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 @@ -9,7 +9,7 @@ license = "Apache-2.0"
[dependencies]
loam-sdk = { workspace = true, features = [
"loam-soroban-sdk",
], version = "0.6.2" }
] }

[package.metadata.loam]
riff = true
2 changes: 1 addition & 1 deletion crates/loam-ft/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "Apache-2.0"
[dependencies]
loam-sdk = { workspace = true, features = [
"loam-soroban-sdk",
], version = "0.6.2" }
] }

[package.metadata.loam]
riff = true
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.2" }
loam-build = { workspace = true }
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.2" }
loam-soroban-sdk = { workspace = true, optional = true, version = "0.6.2" }
loam-sdk-macro = { workspace = true }
loam-soroban-sdk = { workspace = true, optional = true }


[features]
Expand Down

0 comments on commit 8ada45a

Please sign in to comment.