-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
83 lines (80 loc) · 2.59 KB
/
Copy pathCargo.toml
File metadata and controls
83 lines (80 loc) · 2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[workspace]
resolver = "3"
members = [
"crates/stepper-protocol",
"crates/stepper-tui",
"crates/stepper-cli",
"crates/stepper-provider",
"crates/stepper-providers",
"crates/stepper-config",
"crates/stepper-permission",
"crates/stepper-tools",
"crates/stepper-core",
"crates/stepper-mcp",
"crates/stepper-lsp",
]
[workspace.package]
version = "0.17.0"
edition = "2024"
rust-version = "1.95"
license = "MIT"
authors = ["Hyunseok Byun <gumyoincirno@gmail.com>"]
repository = "https://github.com/Stepper-agent/stepper"
# Shared dependency versions. Member crates opt in with `{ workspace = true }`.
# Unused entries are not resolved by cargo, so the list can grow ahead of the crates.
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4", "serde"] }
tokio = { version = "1", default-features = false }
tokio-util = "0.7"
thiserror = "2"
anyhow = "1"
futures = "0.3"
async-trait = "0.1"
smallvec = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
# TUI stack (versions confirmed resolvable on this toolchain)
ratatui = { version = "0.30.1", features = ["scrolling-regions"] }
crossterm = { version = "0.29", features = ["event-stream"] }
ratatui-textarea = "0.9.1"
tui-markdown = "0.3.7"
similar = { version = "3.1", features = ["inline"] }
clap = { version = "4.6", features = ["derive", "env"] }
unicode-width = "0.2"
# Clipboard image paste (Ctrl+V) — read the OS clipboard image, PNG-encode it.
arboard = "3"
image = { version = "0.25", default-features = false, features = ["png"] }
# HTTP + SSE provider stack (Phase 2)
reqwest = { version = "0.13", default-features = false, features = ["stream", "json", "rustls", "http2", "form"] }
eventsource-stream = "0.2"
async-stream = "0.3"
rmcp = "1.7"
secrecy = "0.10"
keyring = { version = "3", default-features = false, features = ["apple-native", "linux-native", "windows-native"] }
base64 = "0.22"
sha2 = "0.10"
getrandom = "0.3"
url = "2"
tiny_http = "0.12"
open = "5"
# Config / frontmatter / schema (Phase 3)
gray_matter = "0.2"
schemars = "1"
regex = "1"
# JSONC (comments + trailing commas) parsing for `setting.json`.
jsonc-parser = { version = "0.32", features = ["serde"] }
# JSON Schema validation for headless `-p --output-schema` structured outputs.
jsonschema = { version = "0.46", default-features = false }
# Codex `config.toml` parsing for `stepper import`.
toml = "0.9"
shell-words = "1"
globset = "0.4"
ignore = "0.4"
# Test-only
wiremock = "0.6"
tempfile = "3"
[profile.release]
lto = "thin"