-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (53 loc) · 1.38 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (53 loc) · 1.38 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
[workspace]
members = [
"crates/orcashell",
"crates/orcashell-cli",
"crates/orcashell-ipc",
"crates/orcashell-protocol",
"crates/orcashell-daemon-core",
"crates/orcashell-session",
"crates/orcashell-terminal-view",
"crates/orcashell-ui",
"crates/orcashell-store",
"crates/orcashell-git",
"crates/orcashell-platform",
"crates/orcashell-syntax",
]
exclude = [
"forks/vte",
"forks/alacritty_terminal",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
gpui = "=0.2.2"
alacritty_terminal = "0.25.1"
portable-pty = "0.9"
parking_lot = "0.12"
crossbeam-channel = "0.5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "4", features = ["derive"] }
anyhow = "1"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
async-channel = "2"
ureq = { version = "3", default-features = false, features = ["rustls"] }
rusqlite = { version = "0.39", features = ["bundled"] }
dirs = "6"
raw-window-handle = "0.6"
base64 = "0.22"
ring = "0.17"
url = "2"
orcashell-ipc = { path = "crates/orcashell-ipc" }
orcashell-platform = { path = "crates/orcashell-platform" }
[profile.release]
strip = true
lto = "thin"
codegen-units = 1
[patch.crates-io]
vte = { path = "forks/vte" }
alacritty_terminal = { path = "forks/alacritty_terminal" }