waypoint 2025.12.1

Waypoint is a Farcaster synchronization tool built in Rust, optimized for memory efficiency.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Clippy configuration for Waypoint

# Set more restrictive lints for cleaner code
disallowed-methods = [
    { path = "std::env::var", reason = "Use config system instead of direct env vars" },
    { path = "std::fs::write", reason = "Use fs_err or tokio::fs for better error handling" },
    { path = "std::fs::read", reason = "Use fs_err or tokio::fs for better error handling" },
]

# DRY/YAGNI principles
too-many-arguments-threshold = 6
cognitive-complexity-threshold = 20