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
3 changes: 0 additions & 3 deletions .github/workflows/guard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,5 @@ jobs:
- name: Generate contracts
run: runseal :codegen

- name: Typecheck
run: pnpm typecheck

- name: Build
run: pnpm build
4 changes: 2 additions & 2 deletions .runseal/hooks/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ if ! git diff --exit-code -- packages/contracts/openapi.json packages/contracts/
exit 1
fi

echo "==> typecheck"
pnpm typecheck
echo "==> lint"
pnpm lint

echo "==> web build"
pnpm build
8 changes: 7 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,13 @@ plane and must stay limited to cell lifecycle facts.
missing prerequisite directly and stop that path. Do not spend time inventing
fallbacks or exploring unrelated environment workarounds unless the user asks.
- Keep hard cuts acceptable. Add compatibility only for a real external surface.
- Cargo and Node external dependencies must use exact stable versions only:
full version numbers such as `1.2.3`, no caret, tilde, range, wildcard, or
partial-version requirements. Workspace/local references remain workspace
indices or path/workspace entries (`workspace:*`, `workspace = true`, or
`path = ...`). Except for specifically documented defective releases, keep
dependencies on the latest stable version and update the lockfile in the same
change.

## Browser Automation Rules

Expand Down Expand Up @@ -364,7 +371,6 @@ Current conventions:
- `cargo fmt --all --check`
- `flavor check --root . --config flavor.toml`
- `cargo test --workspace`
- `pnpm -r --if-present typecheck`
- `pnpm -r --if-present build`
- `SANTI_DB=.tmp/manual.sqlite cargo run -p mini-stim-server-soma -- serve`
- `cargo run -p mini-stim-client-soma -- dev`
Expand Down
94 changes: 48 additions & 46 deletions Cargo.lock

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

34 changes: 17 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,25 @@ license = "MIT"
version = "0.1.0"

[workspace.dependencies]
async-stream = "0.3"
async-trait = "0.1"
axum = { version = "0.8", features = ["macros"] }
bytes = "1"
dotenvy = "0.15"
futures-core = "0.3"
futures-util = "0.3"
jiff = "0.2"
async-stream = "0.3.6"
async-trait = "0.1.89"
axum = { version = "0.8.9", features = ["macros"] }
bytes = "1.11.1"
dotenvy = "0.15.7"
futures-core = "0.3.32"
futures-util = "0.3.32"
jiff = "0.2.28"
mini-stim-proto-client = { path = "proto/crates/client" }
mini-stim-proto-server = { path = "proto/crates/server" }
mini-stim-proto-transport = { path = "proto/crates/transport" }
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls", "stream"] }
rusqlite = { version = "0.40", features = ["bundled"] }
reqwest = { version = "0.13.4", default-features = false, features = ["json", "rustls", "stream"] }
rusqlite = { version = "0.40.1", features = ["bundled"] }
santi-core = { path = "apps/server/soma/crates/santi-core" }
santi-provider = { path = "apps/server/soma/crates/santi-provider" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["fs", "io-util", "macros", "net", "process", "rt-multi-thread", "signal", "sync", "time"] }
tokio-stream = "0.1"
tower-http = { version = "0.6", features = ["cors", "trace"] }
utoipa = { version = "5", features = ["axum_extras"] }
uuid = { version = "1", features = ["v4"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
tokio = { version = "1.52.3", features = ["fs", "io-util", "macros", "net", "process", "rt-multi-thread", "signal", "sync", "time"] }
tokio-stream = "0.1.18"
tower-http = { version = "0.6.11", features = ["cors", "trace"] }
utoipa = { version = "5.5.0", features = ["axum_extras"] }
uuid = { version = "1.23.3", features = ["v4"] }
Loading
Loading