-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
85 lines (78 loc) · 3.22 KB
/
Copy pathCargo.toml
File metadata and controls
85 lines (78 loc) · 3.22 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
78
79
80
81
82
83
84
85
[package]
name = "uri-agent"
version = "2026.831.0"
edition = "2024"
license = "MIT"
description = "A protocol-oriented coding agent with a focused terminal interface"
repository = "https://github.com/4fuu/uri-agent"
readme = "README.md"
keywords = ["ai", "agent", "terminal", "coding"]
categories = ["command-line-utilities", "development-tools"]
include = ["src/**", "docs/**", "Cargo.lock", "LICENSE", "README.md", "README.zh-CN.md"]
[workspace]
members = ["examples/wasm-plugin", "sdk"]
resolver = "2"
[dependencies]
agent-client-protocol = "=1.0.0"
anyhow = "1"
arboard = { version = "3.6.1", features = ["wayland-data-control"] }
async-trait = "0.1"
base64 = "0.22"
bytes = "1"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive", "env"] }
crossterm = { version = "0.29", features = ["event-stream"] }
dirs = "6"
extism = { version = "1.21", default-features = false, features = ["http", "register-filesystem", "register-http", "wasmtime-default-features"] }
flate2 = "1"
form_urlencoded = "1"
fs2 = "0.4"
futures-util = "0.3"
getrandom = "0.2"
html-to-markdown-rs = { version = "3.9.2", default-features = false }
http = "1"
ignore = "0.4"
image = { version = "0.25", default-features = false, features = ["bmp", "png"] }
portable-pty = "0.9"
pulldown-cmark = { version = "0.10", default-features = false }
ratatui = { version = "0.30", features = ["crossterm_0_29"] }
reqwest = { version = "0.13", default-features = false, features = ["brotli", "deflate", "gzip", "json", "rustls"] }
rig = { package = "rig-core", version = "=0.42.0" }
rmcp = { version = "=3.1.4", default-features = false, features = ["client", "transport-async-rw", "transport-streamable-http-client-reqwest"] }
rhai = { version = "1", features = ["sync"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
sha2 = "0.10"
shell-words = "1"
tar = "0.4"
textwrap = "0.16"
tokio = { version = "1", features = ["fs", "io-std", "io-util", "macros", "net", "process", "rt-multi-thread", "signal", "sync", "time"] }
tokio-tungstenite = { version = "0.29", default-features = false, features = ["connect", "rustls-tls-webpki-roots"] }
tokio-util = { version = "0.7", features = ["rt"] }
tokio-rusqlite = { version = "0.7", features = ["bundled"] }
tui-term = "0.3"
tui-textarea = { package = "tui-textarea-2", version = "0.9" }
unicode-general-category = "1"
unicode-segmentation = "1"
unicode-width = "0.2"
uri-agent-plugin-sdk = { version = "=2026.831.0", path = "sdk" }
uuid = { version = "1", features = ["serde", "v7"] }
vt100 = "0.16"
zip = { version = "4", default-features = false, features = ["deflate"] }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[target.'cfg(windows)'.dependencies]
clipboard-win = { version = "5.4", features = ["std"] }
windows-sys = { version = "0.61", features = ["Win32_Foundation", "Win32_Security", "Win32_System_JobObjects", "Win32_System_Threading"] }
[dev-dependencies]
tempfile = "3"
wat = "1"
[lints.rust]
# aws-lc-sys (pulled in by reqwest's rustls feature) marks its jitterentropy
# symbols dllexport on Windows, so MSVC link.exe prints a localized
# "Creating library" notice when linking the binary. The output is benign.
linker_messages = "allow"
[profile.release]
lto = "thin"
strip = true