-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (65 loc) · 2.03 KB
/
Cargo.toml
File metadata and controls
68 lines (65 loc) · 2.03 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
[workspace]
members = ["backend", "crates/*"]
resolver = "2"
[workspace.package]
version = "0.2.20" # NOTE - also update this in backend/Cargo.toml if not using `cargo workspaces`
edition = "2021"
authors = ["ellie@atuin.sh", "michelle@atuin.sh"]
[workspace.dependencies]
atuin-desktop-runtime = { path = "crates/atuin-desktop-runtime" }
sqlx = { version = "0.8", features = [
"runtime-tokio",
"tls-native-tls",
"time",
"chrono",
"postgres",
"mysql",
"sqlite",
"uuid",
"bigdecimal",
"regexp",
] }
tokio = "1.39.3"
uuid = "1.7.0"
async-trait = "0.1.89"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = [
"preserve_order",
] } # preserve_order is important for ordering of FS runbook keys
serde_yaml = "0.9"
ts-rs = { version = "11.1.0", features = ["serde-json-impl", "uuid-impl"] }
chrono = { version = "0.4", features = ["serde", "clock"] }
minijinja = { version = "2.12.0", features = [
"unicode",
"json",
"urlencode",
"loop_controls",
"key_interning",
"builtins",
] }
thiserror = "2.0.11"
pretty_assertions = "1.4.1"
typed-builder = "0.21.0"
log = "0.4.26"
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
dirs = "5.0" # For finding home directory
tempfile = "3.10"
reqwest = { version = "0.12", features = ["json", "native-tls"] }
eyre = "0.6"
time = "0.3.36"
bytes = "1.7.1"
klickhouse = { version = "0.14.0", features = ["tls"] }
sqlparser = { git = "https://github.com/atuinsh/datafusion-sqlparser-rs.git", branch = "mkt/parse-sql-with-byte-offsets" }
url = "2.4"
glob = "0.3"
bigdecimal = "0.4"
nix = { version = "0.29.0", features = ["signal"] }
downcast-rs = "2.0.2"
dyn-clone = "1.0.20"
regex = "1.12.2"
shellexpand = "3.1.0"
[patch.crates-io]
tauri = { git = "https://github.com/tauri-apps/tauri", branch = "feat/cef" }
tauri-runtime = { git = "https://github.com/tauri-apps/tauri", branch = "feat/cef" }
tauri-utils = { git = "https://github.com/tauri-apps/tauri", branch = "feat/cef" }