/ Cargo.toml
Cargo.toml
 1  [package]
 2  name = "quarrel"
 3  version = "0.1.0"
 4  edition = "2024"
 5  
 6  [dependencies]
 7  gpui = { git = "https://github.com/zed-industries/zed" }
 8  reqwest = { version = "0.12.28", features = ["json"] }
 9  serde = { version = "1.0", features = ["derive"] }
10  serde_json = "1.0"
11  gpui-component = { git = "https://github.com/longbridge/gpui-component" }
12  smol = "2"
13  anyhow = "1.0.100"
14  smallvec = "1.15.1"
15  tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
16  scraper = "0.25.0"
17  regex = "1.12.2"
18  libc = "0.2"
19  url = "2.5.7"
20  base64 = "0.22.1"
21  sys-locale = "0.3.2"
22  uuid = { version = "1.19.0", features = ["v4"] }
23  iana-time-zone = "0.1.64"
24  zstd-safe = "7.2.4"
25  erltf_serde = { version = "0.16", features = ["elixir-interop"] }
26  dirs = "6.0.0"
27  sqlx = { version = "0.8.6", features = ["runtime-tokio", "sqlite", "chrono"] }
28  async-tungstenite = { version = "0.32.0", features = [
29    "tokio-runtime",
30    "tokio-native-tls",
31  ] }
32  futures-util = "0.3.31"
33  serde_repr = "0.1.20"
34  erltf = { version = "0.16", features = ["serde", "elixir-interop"] }
35  
36  [target.'cfg(windows)'.dependencies]
37  windows-sys = { version = "0.52", features = [
38    "Win32_System_SystemInformation",
39  ] }
40  
41  [profile.dev]
42  split-debuginfo = "unpacked"
43  opt-level = "s"
44  
45  [profile.release]
46  opt-level = "s"
47  strip = "symbols"
48  lto = "thin"