-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
214 lines (210 loc) · 6.65 KB
/
Cargo.toml
File metadata and controls
214 lines (210 loc) · 6.65 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
[workspace]
default-members = ["packages/cli"]
members = [
"packages/builtin",
"packages/cli",
"packages/clients/rust",
"packages/compiler",
"packages/database",
"packages/either",
"packages/fdb",
"packages/futures",
"packages/http",
"packages/ignore",
"packages/index",
"packages/js",
"packages/stores/log",
"packages/messenger",
"packages/stores/object",
"packages/sandbox",
"packages/serialize",
"packages/server",
"packages/uri",
"packages/util",
"packages/v8",
"packages/vfs",
"packages/zed",
]
resolver = "2"
[workspace.package]
authors = ["Tangram <root@tangram.dev"]
description = "Tangram is a build system and package manager."
edition = "2024"
homepage = "https://www.tangram.dev"
license = "MIT"
repository = "https://github.com/tangramdotdev/tangram"
rust-version = "1.91"
version = "0.0.0"
[workspace.lints.clippy]
assigning_clones = "allow"
bool_to_int_with_if = "allow"
comparison_chain = "allow"
items_after_statements = "allow"
large_enum_variant = "allow"
manual_async_fn = "allow"
many_single_char_names = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
missing_safety_doc = "allow"
pedantic = { level = "warn", priority = -1 }
result_large_err = "allow"
same_functions_in_if_condition = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
too_many_lines = "allow"
type_complexity = "allow"
unsafe_derive_deserialize = "allow"
unused_async = "allow"
[workspace.dependencies]
anstream = "1"
astral-tokio-tar = "0.6"
async-broadcast = "0.7"
async-channel = "2"
async-compression = { version = "0.4", features = ["all"] }
async-nats = "0.47"
async_zip = { version = "0.0.18", features = ["full"] }
blake3 = "1"
byte-unit = { version = "5", features = ["byte"] }
byteorder = "1"
bytes = { version = "1", features = ["serde"] }
clap = { version = "4", features = ["derive", "env", "string", "unstable-v5"] }
clap_complete = "4"
clap_complete_nushell = "4"
comfy-table = "7"
console-subscriber = "0.5"
crossbeam-channel = "0.5"
crossterm = { version = "0.29", features = ["event-stream"] }
dashmap = "6"
data-encoding = "2"
data-encoding-macro = "0.1"
deno_core_icudata = "0.77"
derive_more = { version = "2", features = ["full"] }
fastcdc = { version = "4", features = ["tokio"] }
filetime = "0.2"
flate2 = "1"
fnv = "1"
foundationdb = { version = "0.10", features = ["fdb-7_3", "embedded-fdb-include"] }
foundationdb-tuple = "0.10"
futures = "0.3"
glob = "0.3"
globset = "0.4"
heed = "0.22"
http = "1"
http-body = "1"
http-body-util = "0.1"
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["server-auto", "service", "tokio"] }
im = "15"
include_dir = "0.7"
indexmap = "2"
indoc = "2"
insta = { version = "1", features = ["filters", "json", "redactions", "yaml"] }
io-uring = { git = "https://github.com/tangramdotdev/io-uring", rev = "1648de189c5c11edc3b9de4d3f0421ef52830c73" }
itertools = "0.14"
libc = "0.2"
liblzma = { version = "0.4", features = ["static"] }
lsp-types = "0.97"
miette = { version = "7.6", features = ["fancy"] }
mime = "0.3"
notify = "8"
num = "0.4"
num-derive = "0.4"
num-traits = "0.2"
oauth2 = "5.0.0"
octocrab = "0.49"
owo-colors = "4"
oxc = { git = "https://github.com/oxc-project/oxc", features = ["full"] }
oxc_formatter = { git = "https://github.com/oxc-project/oxc" }
percent-encoding = "2"
petgraph = "0.8"
pin-project = "1"
postgres-protocol = "0.6"
pretty_assertions = "1"
proc-macro2 = "1"
quote = "1"
radix_trie = "0.3.0"
rand = "0.10"
ratatui = "0.30"
reflink-copy = "0.1"
rquickjs = { git = "https://github.com/tangramdotdev/rquickjs", features = ["full-async", "loader", "futures"] }
regex = "1"
reqwest = { version = "0.13", features = ["json", "stream"] }
rusqlite = { version = "0.39", default-features = false, features = ["bundled", "functions"] }
rustix = { version = "1", features = ["fs"] }
rustls = "0.23"
rustls-platform-verifier = "0.7"
rustls-pemfile = "2"
scopeguard = "1"
scylla = { version = "1", features = ["metrics"] }
serde = { version = "1", features = ["rc", "derive"] }
serde-untagged = "0.1"
serde_json = "1"
serde_qs = "1.1"
serde_repr = "0.1"
serde_with = { version = "3", features = ["time_0_3"] }
serde_yaml = { version = "0.9" }
sha2 = "0.11"
smallvec = "1"
sourcemap = "9"
syn = { version = "2", features = ["full"] }
sync_wrapper = "1"
tangram_builtin = { path = "packages/builtin" }
tangram_client = { path = "packages/clients/rust" }
tangram_compiler = { path = "packages/compiler" }
tangram_database = { path = "packages/database" }
tangram_either = { path = "packages/either" }
tangram_fdb = { path = "packages/fdb" }
tangram_futures = { path = "packages/futures" }
tangram_http = { path = "packages/http" }
tangram_ignore = { path = "packages/ignore" }
tangram_index = { path = "packages/index" }
tangram_js = { path = "packages/js" }
tangram_log_store = { path = "packages/stores/log" }
tangram_messenger = { path = "packages/messenger" }
tangram_object_store = { path = "packages/stores/object" }
tangram_sandbox = { path = "packages/sandbox" }
tangram_serialize = { path = "packages/serialize" }
tangram_server = { path = "packages/server" }
tangram_uri = { path = "packages/uri" }
tangram_util = { path = "packages/util" }
tangram_v8 = { path = "packages/v8" }
tangram_vfs = { path = "packages/vfs" }
time = { version = "0.3", features = ["formatting", "parsing", "serde"] }
tokio = { version = "1", features = ["full", "tracing"] }
tokio-postgres = { version = "0.7", features = ["runtime", "with-serde_json-1"] }
tokio-rustls = "0.26"
tokio-stream = { version = "0.1", features = ["full"] }
tokio-util = { version = "0.7", features = ["full"] }
tokio-vsock = "0.7.2"
toml = { version = "1" }
tower = { version = "0.5", features = ["timeout", "util"] }
tower-http = { version = "0.6", features = ["add-extension", "compression-zstd", "decompression-zstd", "map-request-body", "map-response-body", "set-header", "timeout", "util"] }
tracing = "0.1.44"
tracing-opentelemetry = "0.32"
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "json"] }
tracing-tree = "0.4.1"
turso = "0.5.0"
opentelemetry = "0.31"
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.31", features = ["grpc-tonic", "zstd-tonic", "logs", "metrics"] }
opentelemetry-appender-tracing = "0.31"
unicode-segmentation = "1"
unicode-width = "0.2"
uuid = { version = "1", features = ["v7"] }
v8 = { git = "https://github.com/tangramdotdev/rusty_v8" }
waitpid-any = "0.3"
webbrowser = "1"
winnow = "1"
xattr = { version = "1" }
zed_extension_api = "0.7"
zerocopy = { version = "0.8", features = ["derive"] }
zstd = "0.13"
[workspace.metadata.cargo-shear]
ignored = [
"comfy-table",
"icu_calendar",
"liblzma",
"oauth2",
"octocrab",
"webbrowser",
]