Skip to content

Commit

Permalink
chore: admin updates, fix dependabot (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeeshan Lakhani committed Jun 21, 2023
1 parent eaedb38 commit 8c85631
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Default
* @ipvm-wg/fission
* @ipvm-wg/fission @ipvm-wg/collaborators
23 changes: 18 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2

updates:
- package-ecosystem: "cargo"
directory: "/"
commit-message:
prefix: "[chore(workspace)]"
include: "scope"
target-branch: "main"
schedule:
interval: "weekly"

- package-ecosystem: "cargo"
directory: "/homestar-core"
commit-message:
Expand Down Expand Up @@ -42,6 +46,15 @@ updates:
schedule:
interval: "weekly"

- package-ecosystem: "docker"
directory: "/docker"
commit-message:
prefix: "[chore(docker)]"
include: "scope"
target-branch: "main"
schedule:
interval: "weekly"

- package-ecosystem: "github-actions"
directory: "/"
commit-message:
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[workspace]
resolver = "2"
members = [
"homestar-core",
"homestar-guest-wasm",
"homestar-runtime",
"homestar-wasm"
]
resolver = "2"

[workspace.package]
authors = [
Expand Down Expand Up @@ -35,8 +35,10 @@ debug-assertions = true
split-debuginfo = "unpacked"

[profile.release]
codegen-units = 1
# compiling with link time optimizations (LTO)
lto = true
panic = "abort"

[profile.release.package.homestar-core]
# Tell `rustc` to optimize for small code size.
Expand All @@ -54,8 +56,6 @@ opt-level = "s"
debug-assertions = false

[profile.release.package.homestar-guest-wasm]
# Perform optimizations on all codegen units.
codegen-units = 1
# Tell `rustc` to optimize for small code size.
opt-level = "z" # 'z' to optimize "aggressively" for size
# Strip debug symbols
Expand Down

0 comments on commit 8c85631

Please sign in to comment.