From a19cb93b80f71d567c2c782616ed659ab4dd2219 Mon Sep 17 00:00:00 2001 From: Chad Ostrowski <221614+chadoh@users.noreply.github.com> Date: Tue, 16 Jul 2024 12:22:34 -0400 Subject: [PATCH] rm unneeded explicit dep; fix CONTRIBUTING.md --- CONTRIBUTING.md | 7 +++---- Cargo.lock | 11 +++++------ Cargo.toml | 1 - contracts/core/Cargo.toml | 1 - 4 files changed, 8 insertions(+), 12 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2d24f2f..0955cf9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,10 +1,9 @@ # Contributing -This is a guide to contributing to `loam-build/soroban-frontend-template` -itself. Feel free to delete or modify it for your own project. +This is a guide to contributing to `loambuild/frontend` itself. Feel free to delete or modify it for your own project. -soroban-cli requires that the main branch obtained with `git clone` be the branch to use as a template. So we are keeping `main` free of artifacts that do not make sense in the context of a `soroban contract init` template, such as the `contracts` folder. +Stellar CLI requires that the main branch obtained with `git clone` be the branch to use as a template. So we are keeping `main` free of artifacts that do not make sense in the context of a `soroban contract init` template, such as the `contracts` folder. However, when actually maintaining and improving this template, we need these artifacts. -Therefore, to contribute to this project, please check out the `dev` branch. All pushes/merges to the `dev` branch will be automatically pushed to `main` [on every push](.github/workflows/publish.yml). +Therefore, to contribute to this project, please check out the `dev` branch. All pushes/merges to the `dev` branch will be automatically pushed to `main` [on every push](https://github.com/loambuild/frontend/blob/dev/.github/workflows/publish.yml). diff --git a/Cargo.lock b/Cargo.lock index 3e76c1b..73af7a7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -455,7 +455,6 @@ name = "example-core" version = "0.0.0" dependencies = [ "loam-sdk", - "loam-soroban-sdk", "loam-subcontract-core", ] @@ -714,7 +713,7 @@ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" [[package]] name = "loam-build" -version = "0.7.1" +version = "0.7.2" dependencies = [ "cargo_metadata", "thiserror", @@ -723,7 +722,7 @@ dependencies = [ [[package]] name = "loam-sdk" -version = "0.6.11" +version = "0.6.12" dependencies = [ "loam-sdk-macro", "loam-soroban-sdk", @@ -731,7 +730,7 @@ dependencies = [ [[package]] name = "loam-sdk-macro" -version = "0.8.1" +version = "0.8.2" dependencies = [ "Inflector", "cargo_metadata", @@ -747,7 +746,7 @@ dependencies = [ [[package]] name = "loam-soroban-sdk" -version = "0.6.11" +version = "0.6.12" dependencies = [ "loam-sdk-macro", "soroban-sdk", @@ -755,7 +754,7 @@ dependencies = [ [[package]] name = "loam-subcontract-core" -version = "0.7.3" +version = "0.7.5" dependencies = [ "loam-sdk", ] diff --git a/Cargo.toml b/Cargo.toml index 6b96e57..f66b178 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,6 @@ members = [ [workspace.dependencies] loam-sdk = { path = "/Users/chadoh/code/loam/sdk/crates/loam-sdk" } -loam-soroban-sdk = { path = "/Users/chadoh/code/loam/sdk/crates/loam-soroban-sdk" } loam-subcontract-core = { path = "/Users/chadoh/code/loam/sdk/crates/loam-subcontract-core" } [profile.release] diff --git a/contracts/core/Cargo.toml b/contracts/core/Cargo.toml index ab5fe82..e44199b 100644 --- a/contracts/core/Cargo.toml +++ b/contracts/core/Cargo.toml @@ -14,7 +14,6 @@ doctest = false [dependencies] loam-sdk = { workspace = true, features = ["loam-soroban-sdk"] } loam-subcontract-core = { workspace = true } -loam-soroban-sdk = { workspace = true } [dev_dependencies]