-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: move sdk source code to a subdir (#338)
* chore: move sdk source code to a subdir Having Cargo.toml at the root causes problems where other Cargo.toml files (e.g. in the examples dir) end up thinking that they are part of a cargo workspace. This is causing problems when trying to build lambda examples. It's better for the SDK's Cargo.toml to not exist in a parent dir of any Cargo.toml files that are not related to the SDK library itself. To that end, this commit moves all of the SDK code into a subdir called `sdk`. The `Makefile` is still at the root, and the targets have been updated to descend into the sdk directory before executing.
- Loading branch information
Showing
102 changed files
with
3,494 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,4 +92,7 @@ jobs: | |
run: cargo login $CARGO_REGISTRY_TOKEN | ||
|
||
- name: Publish | ||
run: cargo publish | ||
run: | | ||
cd sdk | ||
cargo publish | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.