-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
92 lines (80 loc) · 2.49 KB
/
Cargo.toml
File metadata and controls
92 lines (80 loc) · 2.49 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[workspace]
resolver = "2"
members = ["crates/*"]
[profile.release]
lto = true
codegen-units = 1
[profile.dev.package.backtrace]
opt-level = 3
[workspace.package]
edition = "2021"
homepage = "https://www.remotehiro.com"
include = ["**/*.rs", "Cargo.toml", "crates/**/*.sql", "templates/**/*.html"]
repository = "https://github.com/tacohirosystems/remotehiro"
rust-version = "1.84.1"
version = "0.0.1-alpha"
license = "EUPL-1.2"
[workspace.dependencies]
bin = { path = "crates/bin" }
server = { path = "crates/server" }
model = { path = "crates/model" }
category = { path = "crates/category" }
job = { path = "crates/job" }
location = { path = "crates/location" }
tag = { path = "crates/tag" }
employment = { path = "crates/employment" }
company = { path = "crates/company" }
libhtmx = { path = "crates/libhtmx" }
database = { path = "crates/database" }
warehouse = { path = "crates/warehouse" }
# Database
rusqlite = { version = "0.37", features = [
"serde_json",
"array",
"buildtime_bindgen",
"time",
"functions",
] }
su_sqlite = { git = "https://github.com/sekunho/pkg.git", branch = "main" }
deadpool-sqlite = { version = "0.12" }
# Web
axum = { version = "0.8", features = ["multipart", "macros", "json"] }
axum-extra = { version = "0.10", features = [
"query",
"form",
"cookie",
"typed-header",
] }
http = { version = "1.3" }
headers = { version = "0.4" }
reqwest = { version = "0.12", features = ["json"] }
slug = { version = "0.1" }
tower-http = { version = "0.6", features = ["fs", "compression-br", "trace"] }
tower = { version = "0.5" }
url = { version = "2.5", features = ["serde"] }
# Templating
ammonia = { version = "4.0" }
minijinja = { version = "2.12", default-features = false, features = [
"serde",
"deserialization",
"macros",
"loader",
"multi_template",
"builtins",
] }
minijinja-contrib = { version = "2.12", features = ["datetime"] }
pulldown-cmark = { version = "0.13" }
su_template = { git = "https://github.com/sekunho/pkg.git", branch = "main" }
# Serialization
serde = { version = "1.0" }
serde_html_form = "0.2.7"
serde_json = { version = "1.0" }
# Async
tokio = { version = "1.44", features = ["net", "rt-multi-thread", "signal"] }
time = { version = "0.3", features = ["serde-human-readable", "formatting"] }
rust_decimal = { version = "1.40", features = [] }
# Logging
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
rss = { version = "2.0", features = [ "atom", "with-serde" ] }
quick-xml = { version = "0.39" }