-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (52 loc) · 1.59 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (52 loc) · 1.59 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
[package]
name = "dext"
version = "0.1.0"
edition = "2024"
license = "MIT"
[workspace]
members = ["vendor/ratatui-core"]
default-members = ["."]
resolver = "2"
[dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal", "time", "sync", "process", "io-util"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream", "blocking", "gzip", "brotli", "http2"] }
futures-util = "0.3"
bytes = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
libc = "0.2"
dotenvy = "0.15"
unicode-width = "=0.2.2"
base64 = "0.22"
sha2 = "0.11"
getrandom = "0.4"
ratatui = { version = "=0.30.2", default-features = false, features = ["crossterm", "unstable-rendered-line-info"] }
ratatui-core = "=0.1.2"
tui-markdown = { version = "=0.3.8", default-features = false }
crossterm = { version = "=0.29.0", features = ["event-stream"] }
[target.'cfg(target_os = "linux")'.dependencies]
landlock = "0.4"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.61", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_Console",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_IO",
"Win32_System_JobObjects",
"Win32_System_Pipes",
"Win32_System_Threading",
] }
[dev-dependencies]
criterion = { version = "0.8", default-features = false, features = ["cargo_bench_support"] }
[[bench]]
name = "dext_bench"
harness = false
[patch.crates-io]
ratatui-core = { path = "vendor/ratatui-core" }
[profile.release]
lto = false
codegen-units = 16
strip = "symbols"