-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (57 loc) · 1.57 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (57 loc) · 1.57 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
[workspace]
resolver = "2"
members = ["crates/soar-config",
"crates/soar-db",
"crates/soar-dl",
"crates/soar-utils",
"soar-cli",
"soar-core"
]
[workspace.package]
authors = ["Rabindra Dhakal <contact@qaidvoid.dev>"]
edition = "2021"
readme = "README.md"
repository = "https://github.com/pkgforge/soar"
license = "MIT"
keywords = ["appimage", "binary", "linux", "package-manager", "portable"]
categories = ["command-line-utilities"]
[workspace.dependencies]
compak = "0.1.0"
diesel = { version = "2.3.2", features = [
"64-column-tables",
"returning_clauses_for_sqlite_3_35",
"sqlite"
] }
diesel_migrations = { version = "2.3.0", features = ["sqlite"] }
documented = "0.9.2"
fast-glob = "1.0.0"
miette = { version = "7.6.0", features = ["fancy"] }
percent-encoding = "2.3.2"
rayon = "1.11.0"
regex = { version = "1.11.2", default-features = false, features = [
"std",
"unicode-case",
"unicode-perl"
] }
rusqlite = { version = "0.37.0", features = ["bundled", "rusqlite-macros"] }
serde = { version = "1.0.225", features = ["derive"] }
serde_json = { version = "1.0.145", features = ["indexmap"] }
serial_test = "3.2.0"
soar-config = { path = "crates/soar-config" }
soar-core = { path = "soar-core" }
soar-dl = { path = "crates/soar-dl" }
soar-utils = { path = "crates/soar-utils" }
tempfile = "3.10.1"
thiserror = "2.0.17"
toml = "0.9.8"
toml_edit = "0.23.7"
tracing = { version = "0.1.41", default-features = false }
ureq = { version = "3.1.2", features = ["json"] }
url = "2.5.7"
xattr = "1.6.1"
[profile.release]
opt-level = 3
strip = true
lto = true
panic = "abort"
codegen-units = 1