Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:
# Dockerfile build, and the local host sccache — one silo, zero egress cost.
# Set at the workflow env level (not the composite) because composite actions
# cannot read the `secrets` context. Keys are content-addressed on the full
# compiler input, and the sole build.rs (cow-venue) + nexum-macros are
# compiler input, and the sole build.rs (cow-venue) + the macro crates are
# deterministic, so PR builds writing to the shared bucket write correct objects
# under correct keys (no poisoning); bound storage with an R2 lifecycle-expiry
# rule on the bucket (sccache does not evict cloud backends itself).
Expand Down
16 changes: 13 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = [
"crates/cow-venue",
"crates/nexum-cli",
"crates/nexum-launch",
"crates/nexum-macros",
"crates/nexum-module-macros",
"crates/nexum-runtime",
"crates/nexum-sdk",
"crates/nexum-sdk-test",
Expand All @@ -18,6 +18,7 @@ members = [
"crates/shepherd-sdk",
"crates/shepherd-sdk-test",
"crates/videre-host",
"crates/videre-macros",
"crates/videre-sdk",
"modules/ethflow-watcher",
"modules/example",
Expand Down Expand Up @@ -141,9 +142,9 @@ http-body = "1"
http-body-util = "0.1"
bytes = "1"

# Proc-macro toolkit backing `nexum-macros`. Host-side only: the
# proc-macro crate always builds for the host, even when the module
# consuming it targets wasm.
# Proc-macro toolkit backing `nexum-module-macros` and `videre-macros`.
# Host-side only: a proc-macro crate always builds for the host, even
# when the module consuming it targets wasm.
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["full"] }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "nexum-macros"
name = "nexum-module-macros"
version = "0.1.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Proc-macro glue for nexum runtime modules: #[module] emits the per-cdylib wit-bindgen, host adapter, event dispatch, and export; derive(IntentBody) emits the venue SDK's versioned body codec."
description = "Proc-macro glue for nexum runtime modules: #[module] emits the per-cdylib wit-bindgen, host adapter, event dispatch, and export."

[lib]
proc-macro = true
Expand Down
Loading
Loading