-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathCargo.toml
49 lines (44 loc) · 1.12 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
[package]
name = "fig_desktop_api"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
publish.workspace = true
version.workspace = true
license.workspace = true
[lints]
workspace = true
[dependencies]
anstream.workspace = true
async-trait.workspace = true
base64.workspace = true
bincode = "1.3.3"
camino.workspace = true
cfg-if.workspace = true
dashmap.workspace = true
fig_api_client.workspace = true
fig_auth.workspace = true
fig_install.workspace = true
fig_integrations.workspace = true
fig_os_shim.workspace = true
fig_proto.workspace = true
fig_settings.workspace = true
fig_telemetry.workspace = true
fig_util.workspace = true
fnv = "1.0.7"
serde.workspace = true
serde_json.workspace = true
shellexpand.workspace = true
thiserror.workspace = true
tokio.workspace = true
tracing.workspace = true
uuid.workspace = true
which.workspace = true
whoami.workspace = true
[dev-dependencies]
reqwest.workspace = true
tracing-subscriber.workspace = true
[target.'cfg(target_os="macos")'.dependencies]
macos-utils = { path = "../macos-utils" }
[target.'cfg(target_os = "linux")'.dependencies]
dbus = { path = "../dbus" }