-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
74 lines (67 loc) · 1.95 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
63
64
65
66
67
68
69
70
71
72
73
74
[workspace]
resolver = "2"
members = ["src-tauri", "prisma/prisma_cli"]
[workspace.package]
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
#prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust", rev = "e701c00", default-features = false, features = [
# "sqlite",
# "rspc",
# "sqlite-create-many",
# "migrations"
#] }
prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust", tag = "0.6.11", default-features = false, features = [
"sqlite",
"rspc",
"sqlite-create-many",
"migrations",
] }
#prisma-client-rust-cli = { git = "https://github.com/Brendonovich/prisma-client-rust", rev = "e701c00", default-features = false, features = [
# "sqlite",
# "rspc",
# "sqlite-create-many",
# "migrations"
#] }
prisma-client-rust-cli = { git = "https://github.com/Brendonovich/prisma-client-rust", tag = "0.6.11", default-features = false, features = [
"sqlite",
"rspc",
"sqlite-create-many",
"migrations",
] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = { version = "1.0" }
serde_with = { version = "3.0" }
tauri = { version = "1.6.8", features = [
"dialog-save",
"dialog-open",
"http-request",
"window-set-resizable",
"window-set-size",
"path-all",
"fs-write-file",
"dialog-message",
"fs-read-file",
"updater",
] }
tauri-build = { version = "1.5.2", features = [] }
tokio = { version = "1.38", features = ["macros", "rt", "rt-multi-thread"] }
#specta-macros = "=2.0.0-rc.1"
#specta = "2.0.0-rc.1"
rspc = { version = "0.1.4", features = ["tauri"] }
dotenvy = "0.15.7"
eyre = "0.6"
open = "5.1.4"
pretty_env_logger = "0.5.0"
log = "0.4.21"
thiserror = "1.0"
calamine = { version = "0.25.0", features = ["chrono", "dates"] }
chrono = { version = "0.4", features = ["serde"] }
zip = "2.1"
walkdir = "2.5"
[profile.release]
codegen-units = 1
debug = true
lto = true
opt-level = "z"
panic = 'abort'