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
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "agentfs sandbox",
"name": "vfs sandbox",
"dockerComposeFile": ["docker-compose.yml"],
"service": "agentfs",
"service": "vfs",
"remoteUser": "node",
"workspaceFolder": "/workspace",
"waitFor": "postStartCommand",
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
timeout: 5s
retries: 10
start_period: 1s
agentfs:
vfs:
depends_on:
proxy:
condition: service_healthy
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
- name: Allow unprivileged user namespaces
run: |
# Ubuntu 24.04 runner images gate unprivileged user namespaces behind
# AppArmor; without this the agentfs run suites SKIP and the strict
# AppArmor; without this the vfs run suites SKIP and the strict
# gate goes red instead of exercising the sandbox for real.
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0

Expand All @@ -120,18 +120,18 @@ jobs:
# fails the strict gate. The corruption-torture uring leg needs no
# entry: with enable_uring=N the mount falls back to the legacy
# channel and the leg passes.
AGENTFS_GATE_ALLOWED_SKIPS: fuse-sigint-panic-census
VFS_GATE_ALLOWED_SKIPS: fuse-sigint-panic-census
run: |
# scripts/gate.sh runs crates/agentfs-cli/tests/all.sh with
# AGENTFS_GATE_STRICT=1, then phase8-validation.py --smoke (which
# scripts/gate.sh runs crates/vfs-cli/tests/all.sh with
# VFS_GATE_STRICT=1, then phase8-validation.py --smoke (which
# includes the noopen/flush/base-drift coherence harnesses) and the
# consistency-canon census.
scripts/gate.sh

- name: Run pjdfstest phase5-ci
run: |
scripts/validation/posix/run-pjdfstest.sh \
--agentfs-bin "$PWD/target/release/agentfs" \
--vfs-bin "$PWD/target/release/vfs" \
--pjdfstest-dir /tmp/pjdfstest \
--profile phase5-ci

Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
__MACOSX/
.AppleDouble
.LSOverride
Icon[
]
Icon?

# Thumbnails
._*
Expand All @@ -26,6 +25,7 @@ Network Trash Folder
Temporary Items
.apdisk

.vfs
.agentfs
target/

Expand Down
208 changes: 104 additions & 104 deletions Cargo.lock

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

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
[workspace]
members = [
"crates/agentfs-cli",
"crates/agentfs-core",
"crates/agentfs-fuse",
"crates/agentfs-nfs",
"crates/agentfs-mount",
"crates/vfs-cli",
"crates/vfs-core",
"crates/vfs-fuse",
"crates/vfs-nfs",
"crates/vfs-mount",
]
resolver = "2"

[workspace.package]
version = "0.6.4"
edition = "2021"
license = "MIT"
repository = "https://github.com/tursodatabase/agentfs"
repository = "https://github.com/tursodatabase/vfs"

# Concurrency canon (architecture.md section 7 item 7): no lock guard held
# across an .await; enforced structurally, not by review.
[workspace.lints.clippy]
await_holding_lock = "deny"

[workspace.dependencies]
agentfs-core = { path = "crates/agentfs-core" }
agentfs-cli = { path = "crates/agentfs-cli" }
agentfs-fuse = { path = "crates/agentfs-fuse" }
agentfs-mount = { path = "crates/agentfs-mount" }
agentfs-nfs = { path = "crates/agentfs-nfs" }
vfs-core = { path = "crates/vfs-core" }
vfs-cli = { path = "crates/vfs-cli" }
vfs-fuse = { path = "crates/vfs-fuse" }
vfs-mount = { path = "crates/vfs-mount" }
vfs-nfs = { path = "crates/vfs-nfs" }

anyhow = "1.0"
async-trait = "0.1"
Expand Down
Loading
Loading