-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 809 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (29 loc) · 809 Bytes
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
[package]
name = "deepseek_code"
version = "0.1.6"
edition = "2021"
default-run = "deepseek"
description = "DeepSeek-first terminal code agent"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/willamhou/DeepSeekCode"
homepage = "https://github.com/willamhou/DeepSeekCode"
keywords = ["deepseek", "agent", "cli", "tui"]
categories = ["command-line-utilities", "development-tools"]
publish = false
[[bin]]
name = "dscode"
path = "src/main.rs"
[[bin]]
name = "deepseek"
path = "src/bin/deepseek.rs"
[dependencies]
crossterm = "0.28.1"
flate2 = "1.0"
ratatui = "0.29.0"
signal-hook = "0.3"
tar = "0.4"
unicode-width = "0.2"
zip = { version = "2.4.2", default-features = false, features = ["deflate-flate2", "flate2"] }
[target.'cfg(windows)'.dependencies]
portable-pty = "0.9.0"