This repository was archived by the owner on Apr 28, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
87 lines (80 loc) · 2.55 KB
/
Copy pathCargo.toml
File metadata and controls
87 lines (80 loc) · 2.55 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
84
85
86
87
[package]
name = "fabrik"
version = "2.0.0"
edition = "2021"
authors = ["Tuist Team"]
description = "Multi-layer build cache infrastructure"
license = "MIT"
[lib]
# Generate both static and dynamic libraries for C FFI
crate-type = ["rlib", "cdylib", "staticlib"]
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.9"
anyhow = "1"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
chrono = { version = "0.4", features = ["serde"] }
rocksdb = { version = "0.24", default-features = false, features = ["snappy"] }
num_cpus = "1.16"
crossbeam-channel = "0.5"
sha2 = "0.10"
hex = "0.4"
kdl = "6.0"
glob = "0.3"
tar = "0.4"
zstd = "0.13"
walkdir = "2"
tempfile = "3"
tonic = "0.14"
tonic-prost = "0.14"
prost = "0.14"
prost-types = "0.14"
tokio-stream = "0.1"
dirs = "6"
axum = "0.8"
tower = "0.5"
tower-http = { version = "0.6", features = ["trace", "cors"] }
bytes = "1"
which = "8"
# Pin home to avoid edition 2024 requirement
home = "=0.5.12"
schlussel = { git = "https://github.com/tuist/schlussel", branch = "main" }
# OpenSSL vendored for cross-compilation
openssl = { version = "0.10", features = ["vendored"] }
# P2P dependencies
mdns-sd = "0.17"
notify-rust = "4.11"
hmac = "0.12"
hostname = "0.4"
rand = "0.9"
# QuickJS runtime for portable recipes
rquickjs = { git = "https://github.com/DelSkayn/rquickjs.git", features = ["array-buffer", "allocator", "loader", "macro", "futures", "classes"] }
# LLRT modules for Node.js compatibility
llrt_utils = { git = "https://github.com/awslabs/llrt", branch = "main", features = ["fs"] }
llrt_fs = { git = "https://github.com/awslabs/llrt", branch = "main" }
llrt_child_process = { git = "https://github.com/awslabs/llrt", branch = "main" }
llrt_buffer = { git = "https://github.com/awslabs/llrt", branch = "main" }
llrt_path = { git = "https://github.com/awslabs/llrt", branch = "main" }
llrt_console = { git = "https://github.com/awslabs/llrt", branch = "main" }
[target.'cfg(unix)'.dependencies]
nix = { version = "0.30", features = ["signal"] }
[target.'cfg(target_os = "macos")'.dependencies]
cocoa = "0.26"
objc = "0.2"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["processthreadsapi", "winnt", "handleapi"] }
[dev-dependencies]
tempfile = "3"
serial_test = "3"
assert_cmd = "2"
predicates = "3"
uuid = { version = "1", features = ["v4"] }
rand = "0.9"
[build-dependencies]
tonic-prost-build = "0.14"
cbindgen = "0.29"