CanMan/examples/canfs/Cargo.toml
Jason Tudisco 360ecbdad0 Initial commit: CAN Service + examples (can-sync v1, canfs, filemanager, paste)
CAN Service: content-addressable storage with HTTP API, SQLite metadata,
file-based blob storage, thumbnail generation, and integrity verification.

can-sync v1: P2P sync sidecar using iroh-docs for encrypted peer-to-peer
replication with library/filter-based selective sync. Fully builds but
being superseded by v2 (simplified full-mirror approach).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 10:32:04 -06:00

28 lines
655 B
TOML

[package]
name = "canfs"
version = "0.1.0"
edition = "2021"
publish = false
description = "Mount CAN service assets as a virtual Windows filesystem via WinFSP"
[[bin]]
name = "canfs"
path = "src/main.rs"
[dependencies]
winfsp = "0.12"
widestring = "1"
reqwest = { version = "0.12", features = ["json", "blocking"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = "0.4"
parking_lot = "0.12"
clap = { version = "4", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1"
ctrlc = "3"
[build-dependencies]
winfsp = { version = "0.12", features = ["delayload"] }