Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
43d5457
fix: migrate firefly-client to gRPC, add deploy diagnostics and docke…
dylon Mar 27, 2026
392cc2f
test: add comprehensive test coverage for gRPC migration and domain l…
dylon Mar 31, 2026
c65a547
fix: restore heartbeat and fault-tolerance for standalone Docker nodes
dylon Mar 31, 2026
4deb9e6
fix: replace local f1r3node path dependency with git reference
dylon Mar 31, 2026
39d22b5
style: fix rustfmt formatting for CI
dylon Mar 31, 2026
b102de5
fix: resolve security audit vulnerabilities
dylon Mar 31, 2026
12be122
ci: use rust-toolchain.toml instead of hardcoded toolchain list
dylon Mar 31, 2026
e27d8d1
ci: remove explicit nightly toolchain from Makefile tasks
dylon Mar 31, 2026
4495b9e
ci: enable AES+SSE2 target features for gxhash dependency
dylon Mar 31, 2026
1202739
chore: ignore .pgmcp.toml
dylon Jul 17, 2026
ccb92bd
fix: migrate firefly-client to f1r3node-rust models
dylon Jul 17, 2026
8fd3ffb
fix: bound read and write node transports
dylon Jul 17, 2026
662c138
fix: replay finalized deploys to reconnecting subscribers
dylon Jul 17, 2026
cb296b2
fix: rename the agent binder to agentData in the agents template
dylon Jul 17, 2026
5e709fb
fix: target the system vault and unrace registry peeks in templates
dylon Jul 17, 2026
68afed6
fix: unescape Rholang strings read back from the tuplespace
dylon Jul 17, 2026
13c40ae
fix: retry testnet log reads and verify testnet env registration
dylon Jul 17, 2026
b3e7ca9
test: source protos from the f1r3node-rust models crate
dylon Jul 17, 2026
da09f40
test: declare the pycryptodome dependency
dylon Jul 17, 2026
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
6 changes: 5 additions & 1 deletion .cargo/audit.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
[advisories]
ignore = ["RUSTSEC-2023-0071", "RUSTSEC-2026-0002"]
ignore = [
"RUSTSEC-2023-0071",
"RUSTSEC-2026-0002",
"RUSTSEC-2025-0141", # bincode unmaintained — transitive dep from f1r3node, not fixable in embers
]
1 change: 0 additions & 1 deletion .github/workflows/actions/setup-rust/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ runs:
id: setup-rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly, stable
components: rustfmt, clippy
cache: true

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/embers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ on:
jobs:
build:
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-C target-feature=+aes,+sse2"
steps:
- name: Checkout code
uses: actions/checkout@v6
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ index.scip
.DS_Store
*.pyc
schema.json
.pgmcp.toml

docker/.env
docker/**/default.conf
docker/docker-compose.override.yaml
Loading
Loading