-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (64 loc) · 1.89 KB
/
Cargo.toml
File metadata and controls
77 lines (64 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[workspace]
resolver = "3"
members = ["crates/*"]
default-members = ["crates/rarr-terminal"]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/TODO/rarr"
[workspace.dependencies]
# Internal crates
rarr-core = { path = "crates/rarr-core" }
rarr-mid = { path = "crates/rarr-mid" }
# R FFI
libloading = "0.9"
# Terminal UI
base64 = "0.22"
crossterm = "0.29"
crokey = { version = "1.4", features = ["serde"] }
nu-ansi-term = { version = "0.50", features = ["derive_serde_style"] }
ratatui = "0.29"
reedline = { git = "https://github.com/nushell/reedline.git", rev = "beb43685030b8feab8afb3bda47d901451bc4698", features = ["sqlite", "idle_callback"] }
nucleo-matcher = "0.3"
tree-sitter = "0.24"
tree-sitter-r = { git = "https://github.com/r-lib/tree-sitter-r", rev = "95aff097aa927a66bb357f715b58cde821be8867" }
# Configuration
chrono = "0.4"
dirs = "6.0"
rusqlite = { version = "0.37", features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.9"
unicode-width = "0.2"
# CLI
clap = { version = "4.5", features = ["derive", "env"] }
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Logging
log = "0.4"
env_logger = "0.11"
# Unix
exec = "0.3"
libc = "0.2"
nix = { version = "0.30", features = ["signal", "process"] }
rpassword = "7"
# Windows
encoding_rs = "0.8"
windows-sys = { version = "0.61", features = ["Win32_Foundation", "Win32_System_Console", "Win32_System_Threading"] }
# Testing
insta = "1.46"
tempfile = "3"
# Patch crossterm with Windows VT input support (bracketed paste)
# https://github.com/crossterm-rs/crossterm/pull/1030
[patch.crates-io]
crossterm = { git = "https://github.com/crossterm-rs/crossterm", rev = "03bb4f26610a5904b8e875fcb610d16bf7d00814" }
# Release profile for distribution builds
[profile.dist]
inherits = "release"
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"
opt-level = "s"