Cargo.toml (589B)
1 # Valentine — a terminal replacement for Focusrite Control (Scarlett 18i20 3rd Gen) 2 # 3 # Workspace layout (core + bin split, like ivory-rust): 4 # scarlett-core — pure scarlett2 protocol + device model (no UI, fully testable) 5 # valentine — ratatui front-end (added in Phase 2) 6 # spike — Phase 0 USB feasibility gate (throwaway; remove once core lands) 7 8 [workspace] 9 members = ["scarlett-core", "valentine", "spike"] 10 resolver = "2" 11 12 [workspace.package] 13 edition = "2021" 14 license = "MIT" 15 authors = ["Ganten"] 16 17 [workspace.dependencies] 18 nusb = "0.2" 19 anyhow = "1"