forked from Yoo1tic/pollux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
86 lines (74 loc) · 2.19 KB
/
Cargo.toml
File metadata and controls
86 lines (74 loc) · 2.19 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
[workspace]
members = ["pollux-schema", "pollux-thoughtsig-core"]
[workspace.package]
version = "0.4.0"
edition = "2024"
license = "AGPL-3.0-only"
[workspace.dependencies]
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
ahash = "0.8"
moka = { version = "0.12", features = ["sync"] }
[package]
name = "pollux"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
[dependencies]
mimalloc = { version = "*", features = ["v3"] }
chrono = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { version = "1.48", features = ["macros", "rt-multi-thread", "signal"] }
url = { version = "2.5", features = ["serde"] }
reqwest = { version = "0.12", default-features = false, features = ["http2", "json", "rustls-tls", "stream"] }
base64 = "0.22"
rand = "0.9"
uuid = { version = "1", features = ["v4"] }
ahash = { workspace = true }
moka = { workspace = true }
oauth2 = "5.0"
thiserror = "2.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
backon = "1.6"
futures = "0.3"
ractor = { version = "0.15", features = ["async-trait"] }
sqlx = { version = "0.8", default-features = false, features = ["sqlite", "chrono", "runtime-tokio", "macros"] }
axum = { version = "0.8" }
axum-extra = { version = "0.12", features = ["typed-header", "cookie-private"] }
headers = "0.4"
subtle = "2.6"
eventsource-stream = "0.2"
figment = { version = "0.10", features = ["toml"] }
tokio-stream = "0.1"
time = "0.3"
governor = "0.10"
async-trait = "0.1"
pollux-schema = { path = "pollux-schema" }
pollux-thoughtsig-core = { path = "pollux-thoughtsig-core" }
[features]
bench = []
[dev-dependencies]
tower = "0.5"
criterion = { version = "0.8", features = ["html_reports", "async_tokio"] }
tokio = { version = "1.48", features = ["macros", "rt-multi-thread"] }
[[bench]]
name = "model_catalog"
harness = false
[[bench]]
name = "scheduler"
harness = false
required-features = ["bench"]
[[bench]]
name = "e2e"
harness = false
[build-dependencies]
dotenvy = "0.15"
[profile.release]
strip = true
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"