-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (43 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
47 lines (43 loc) · 1.11 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
[workspace]
resolver = "3"
members = [
"crates/git-forge",
"crates/forge-mcp",
"crates/forge-github",
"crates/forge-server",
"crates/forge-lsp",
]
exclude = ["extensions/forge-zed"]
[workspace.package]
authors = ["Joey Carpinelli <joseph.carpinelli@icloud.com>"]
edition = "2024"
publish = true
license = "MIT OR Apache-2.0"
[workspace.lints.rust]
unsafe_code = "forbid"
missing_docs = "warn"
[workspace.lints.clippy]
all = "warn"
pedantic = "warn"
[workspace.dependencies]
clap = { version = "4", features = ["derive"] }
anyhow = "1"
git-forge = { path = "crates/git-forge" }
forge-github = { path = "crates/forge-github" }
rmcp = { version = "1.3.0", features = ["server", "transport-io"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
git2 = "0.20.4"
thiserror = "2"
git-ledger = "0.1.0-alpha.4"
git-chain = "0.1.0-alpha.1"
tempfile = "3"
octocrab = "0.44"
toml = "0.8"
facet = "0.44"
facet-json = "0.44"
inquire = { version = "0.7", features = ["editor"] }
comfy-table = "7"
tower-lsp = "0.20"
uuid = { version = "1", features = ["v7"] }