-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (45 loc) · 2.03 KB
/
Cargo.toml
File metadata and controls
62 lines (45 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
[package]
name = "rustclaw"
version = "1.10.5"
edition = "2024"
repository = "https://github.com/shimaenaga1123/rustclaw"
homepage = "https://github.com/shimaenaga1123/rustclaw"
description = "A lightweight, memory-aware Discord AI assistant powered by Anthropic-compatible APIs, implemented in Rust."
license = "MIT"
[dependencies]
serenity = { git="https://github.com/serenity-rs/serenity", rev = "e114212", default-features = false, features = ["rustls_backend", "client", "gateway", "model", "cache"] }
rig-core = { version = "0.33", default-features = false, features = ["reqwest-rustls"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs", "sync", "time", "signal"] }
tokio-cron-scheduler = "0.15"
futures-util = "0.3"
async-trait = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1"
thiserror = "2"
uuid = { version = "1", features = ["v4", "fast-rng"] }
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
chrono-tz = "0.10.4"
iana-time-zone = "0.1.65"
reqwest = { version = "0.13", default-features = false, features = ["rustls", "json", "gzip", "brotli", "query"] }
rusty_ytdl = { git = "https://github.com/Mithronn/rusty_ytdl", default-features = false, features = ["search", "rustls"] }
bollard = "0.20"
sys-locale = "0.3"
usearch = "2"
sea-orm-sync = { version = "2.0.0-rc", default-features = false, features = ["rusqlite", "sync", "macros", "schema-sync"] }
libsqlite3-sys = { version = "0.36", features = ["bundled"] }
once_cell = "1.21.4"
fastembed = { version = "5", default-features = false, features = ["hf-hub", "ort-download-binaries-rustls-tls"] }
quick-xml = "0.39"
[dev-dependencies]
cargo-husky = {version = "1", default-features = false, features = ["precommit-hook", "prepush-hook", "run-cargo-check", "run-cargo-clippy", "run-cargo-fmt"]}
[profile.release]
strip = true
lto = "thin"
opt-level = 3
panic = "abort"
[profile.dist]
inherits = "release"