-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
91 lines (85 loc) · 2.01 KB
/
Cargo.toml
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
86
87
88
89
90
91
[package]
name = "figterm"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
publish.workspace = true
version.workspace = true
license.workspace = true
[lints]
workspace = true
[features]
# Tests that do not work on CI
desktop-tests = []
profiling_early_exit = []
[dependencies]
alacritty_terminal = { path = "../alacritty_terminal" }
anyhow.workspace = true
async-trait.workspace = true
aws-types.workspace = true
bitflags.workspace = true
bstr.workspace = true
bytes.workspace = true
cfg-if.workspace = true
clap.workspace = true
crossterm.workspace = true
dashmap.workspace = true
fig_api_client.workspace = true
fig_auth.workspace = true
fig_install.workspace = true
fig_ipc.workspace = true
fig_log.workspace = true
fig_os_shim.workspace = true
fig_proto.workspace = true
fig_request.workspace = true
fig_settings.workspace = true
fig_telemetry.workspace = true
fig_telemetry_core.workspace = true
fig_util.workspace = true
filedescriptor = "0.8"
flume = "0.11.0"
fnv = "1.0.7"
indoc.workspace = true
memmem = "0.1.1"
mimalloc.workspace = true
num-traits = "0.2"
once_cell.workspace = true
parking_lot = "0.12.1"
pin-project = "1.0.12"
portable-pty.workspace = true
radix_trie = "0.2.1"
regex.workspace = true
semver.workspace = true
serde.workspace = true
serde_json.workspace = true
shell-color.workspace = true
shell-words = "1.1"
shellexpand = "3.1.0"
shlex = "1.3.0"
sysinfo.workspace = true
time.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
uuid.workspace = true
which.workspace = true
[target.'cfg(unix)'.dependencies]
nix.workspace = true
[target.'cfg(windows)'.dependencies]
lazy_static = "1.4"
shared_library = "0.1"
windows = { version = "0.58.0", features = ["Win32_System_Threading"] }
winapi = { version = "0.3", features = [
"winuser",
"winnls",
"consoleapi",
"handleapi",
"fileapi",
"namedpipeapi",
"synchapi",
] }
winreg = "0.52.0"
[dev-dependencies]
assert_cmd = "2.0.8"
predicates = "3.0.1"
tempfile.workspace = true