-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
62 lines (57 loc) · 1.61 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
[workspace]
resolver = "2"
members = ["crates/*", "apps/api-server", "apps/desktop/src-tauri"]
[workspace.package]
version = "0.2.0"
edition = "2021"
[workspace.dependencies]
rspc = { version = "=0.2.0" }
rspc-axum = { version = "0.1.1", features = ["ws"] }
rspc-tauri = { version = "0.0.1" }
specta = { version = "1", features = ["chrono"] }
prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust", branch = "rspc-0.2.0", features = [
"specta",
"rspc",
"migrations",
"sqlite",
], default-features = false }
prisma-client-rust-cli = { git = "https://github.com/Brendonovich/prisma-client-rust", branch = "rspc-0.2.0", features = [
"rspc",
"migrations",
"sqlite",
], default-features = false }
chrono = "0.4.34"
uuid = { version = "1.8.0", features = ["v4", "v5", "serde"] }
tokio = "1.35"
tokio-util = "0.7.10"
test-log = { version = "0.2.14", features = ["trace"] }
futures = "0.3.30"
serde_json = "1.0"
serde = "1.0"
dotenvy = "0.15.7"
anyhow = "1.0.79"
reqwest = "0.12.5"
strum = "0.26"
strum_macros = "0.26"
thiserror = "1.0.58"
async-stream = "0.3.5"
syn = { version = "2" }
quote = "1"
phf = { version = "0.11.2" }
regex = "1.10.4"
rand = "0.8.5"
# image 0.25 got issue see https://github.com/bmrlab/gendam/issues/65
image = "=0.25.2"
ndarray = { version = "0.15.6" }
# tracing
tracing = "0.1.40"
async-trait = "0.1.77"
async-recursion = "1.1.1"
downloader = "0.2.7"
# Set the settings for build scripts and proc-macros.
[profile.dev.build-override]
opt-level = 3
# Set the default for dependencies, except workspace members.
[profile.dev.package."*"]
opt-level = 3
incremental = false