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: 3 additions & 0 deletions cortex-tui-framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ description = "A high-performance terminal UI framework for Rust"
repository = "https://github.com/example/cortex-tui-framework"
authors = ["Cortex TUI Contributors"]

[lints]
workspace = true

[dependencies]
cortex-tui-core = { path = "crates/cortex-tui-core" }
cortex-tui-buffer = { path = "crates/cortex-tui-buffer" }
Expand Down
3 changes: 3 additions & 0 deletions cortex-tui-framework/crates/cortex-tui-buffer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ edition = "2021"
license = "MIT"
description = "Double-buffered terminal rendering for Cortex TUI"

[lints]
workspace = true

[dependencies]
cortex-tui-core = { path = "../cortex-tui-core" }
smallvec = { workspace = true }
3 changes: 3 additions & 0 deletions cortex-tui-framework/crates/cortex-tui-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ cast_lossless = "allow"
float_cmp = "allow"
missing_errors_doc = "allow"
uninlined_format_args = "allow"
# Include workspace-level lint allows
unnecessary_sort_by = "allow"
iter_without_into_iter = "allow"

[dependencies]
bitflags = { workspace = true }
Expand Down
3 changes: 3 additions & 0 deletions cortex-tui-framework/crates/cortex-tui-input/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ edition = "2021"
license = "MIT"
description = "Input handling for Cortex TUI"

[lints]
workspace = true

[dependencies]
crossterm = { workspace = true }
bitflags = { workspace = true }
Expand Down
3 changes: 3 additions & 0 deletions cortex-tui-framework/crates/cortex-tui-layout/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ edition = "2021"
license = "MIT"
description = "Flexbox layout engine for Cortex TUI"

[lints]
workspace = true

[dependencies]
taffy = { workspace = true }
slotmap = { workspace = true }
3 changes: 3 additions & 0 deletions cortex-tui-framework/crates/cortex-tui-syntax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ edition = "2021"
license = "MIT"
description = "Syntax highlighting for Cortex TUI"

[lints]
workspace = true

[dependencies]
cortex-tui-text = { path = "../cortex-tui-text" }
tree-sitter = { workspace = true }
Expand Down
3 changes: 3 additions & 0 deletions cortex-tui-framework/crates/cortex-tui-terminal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ edition = "2021"
license = "MIT"
description = "Terminal backend for Cortex TUI"

[lints]
workspace = true

[dependencies]
cortex-tui-core = { path = "../cortex-tui-core" }
cortex-tui-buffer = { path = "../cortex-tui-buffer" }
Expand Down
3 changes: 3 additions & 0 deletions cortex-tui-framework/crates/cortex-tui-text/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ edition = "2021"
license = "MIT"
description = "Text rendering and Unicode handling for Cortex TUI"

[lints]
workspace = true

[dependencies]
unicode-width = { workspace = true }
unicode-segmentation = { workspace = true }
Expand Down
3 changes: 3 additions & 0 deletions cortex-tui-framework/crates/cortex-tui-widgets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ edition = "2021"
license = "MIT"
description = "Widget library for Cortex TUI"

[lints]
workspace = true

[dependencies]
cortex-tui-core = { path = "../cortex-tui-core" }
cortex-tui-buffer = { path = "../cortex-tui-buffer" }
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-agents/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "0.1.0"
edition = "2021"
description = "Multi-agent system for Cortex CLI"

[lints]
workspace = true

[dependencies]
tokio = { workspace = true }
serde = { version = "1", features = ["derive"] }
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-batch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "0.1.0"
edition = "2021"
description = "Batch operations and MultiEdit tools for Cortex CLI"

[lints]
workspace = true

[dependencies]
tokio = { workspace = true, features = ["fs", "time", "sync"] }
serde = { version = "1", features = ["derive"] }
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-compact/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "0.1.0"
edition = "2021"
description = "Auto-compaction for Cortex CLI conversations"

[lints]
workspace = true

[dependencies]
serde = { version = "1", features = ["derive"] }
tracing = "0.1"
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-experimental/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "0.1.0"
edition = "2021"
description = "Experimental features management for Cortex CLI"

[lints]
workspace = true

[dependencies]
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["fs"] }
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-ghost/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "0.1.0"
edition = "2021"
description = "Ghost commits for automatic undo in Cortex CLI"

[lints]
workspace = true

[dependencies]
tokio = { workspace = true, features = ["process"] }
serde = { version = "1", features = ["derive"] }
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-gui/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ edition = "2021"
name = "cortex"
path = "src/main.rs"

[lints]
workspace = true

[dependencies]
# CLI argument parsing
clap = { version = "4", features = ["derive", "wrap_help", "string"] }
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-hooks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "0.1.0"
edition = "2021"
description = "Hook system for Cortex CLI (formatters, post-edit actions)"

[lints]
workspace = true

[dependencies]
tokio = { workspace = true, features = ["process", "sync"] }
serde = { version = "1", features = ["derive"] }
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-linux-sandbox/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ path = "src/main.rs"
name = "cortex_linux_sandbox"
path = "src/lib.rs"

[lints]
workspace = true

[dependencies]
# CLI parsing
clap = { version = "4", features = ["derive"] }
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-lsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "0.1.0"
edition = "2021"
description = "LSP (Language Server Protocol) support for Cortex CLI"

[lints]
workspace = true

[dependencies]
# Internal

Expand Down
3 changes: 3 additions & 0 deletions src/cortex-migrations/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "0.1.0"
edition = "2021"
description = "Model migration warnings and deprecation notices for Cortex CLI"

[lints]
workspace = true

[dependencies]
serde = { version = "1", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
3 changes: 3 additions & 0 deletions src/cortex-plugins/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ license.workspace = true
repository.workspace = true
description = "Complete WASM-based plugin system for Cortex CLI"

[lints]
workspace = true

[dependencies]
# Async runtime
tokio = { workspace = true }
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-ratelimits/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "0.1.0"
edition = "2021"
description = "Rate limits display for Cortex CLI"

[lints]
workspace = true

[dependencies]
tokio = { workspace = true }
serde = { version = "1", features = ["derive"] }
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-resume/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "0.1.0"
edition = "2021"
description = "Session resume functionality for Cortex CLI"

[lints]
workspace = true

[dependencies]
tokio = { workspace = true, features = ["fs", "time", "sync"] }
serde = { version = "1", features = ["derive"] }
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-review/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "0.1.0"
edition = "2021"
description = "Code review functionality for Cortex CLI"

[lints]
workspace = true

[dependencies]
tokio = { workspace = true, features = ["process"] }
serde = { version = "1", features = ["derive"] }
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-share/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "0.1.0"
edition = "2021"
description = "Session sharing functionality for Cortex CLI"

[lints]
workspace = true

[dependencies]
cortex-common = { path = "../cortex-common" }
tokio = { workspace = true }
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-snapshot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "0.1.0"
edition = "2021"
description = "Snapshot and revert functionality for Cortex CLI"

[lints]
workspace = true

[dependencies]
tokio = { workspace = true, features = ["process"] }
serde = { version = "1", features = ["derive"] }
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ edition = "2021"
description = "Centralized storage for Cortex - OS-aware paths and session persistence"
license = "MIT"

[lints]
workspace = true

[dependencies]
# Path detection
dirs = "5"
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-update/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ description = "Auto-update system for Cortex CLI"
name = "cortex_update"
path = "src/lib.rs"

[lints]
workspace = true

[dependencies]
# Internal
cortex-engine = { workspace = true }
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-windows-sandbox/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ windows = { version = "0.58", features = [
"Win32_System_Memory",
] }

[lints]
workspace = true

[dependencies]
serde = { version = "1", features = ["derive"] }
tracing = "0.1"
Expand Down
Loading