-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (39 loc) · 1.13 KB
/
Cargo.toml
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
[package]
description = "A Discord bot, written in Rust, that provides a frontend to AUTOMATIC1111's Stable Diffusion Web UI."
edition = "2021"
license = "GPL-3.0-only"
name = "exilent"
repository = "https://github.com/philpax/exilent"
version = "0.2.0"
[dependencies]
anyhow = "1.0.66"
bytemuck = "1.12.3"
chrono = "0.4.23"
flume = "0.10.14"
futures = "0.3.25"
genevo = {version = "0.7.1", features = ["smallvec"]}
hex = "0.4.3"
image = "0.24.4"
itertools = "0.10.5"
nanoid = "0.4.0"
once_cell = "1.16.0"
parking_lot = "0.12.1"
rand = "0.8.5"
reqwest = "0.11.13"
rusqlite = {version = "0.28.0", features = ["bundled", "chrono"]}
serde = {version = "1.0.150", features = ["derive"]}
serde_json = "1.0.89"
serenity = {version = "0.11.5", default-features = false, features = ["client", "gateway", "rustls_backend", "model", "collector"]}
smallvec = "1.10.0"
stable-diffusion-a1111-webui-client = "0.1.1"
tokio = {version = "1.0", features = ["full"]}
toml = "0.5.10"
[build-dependencies]
hex = "0.4.3"
serde_json = "1.0.89"
walkdir = "2.3.2"
# generated by 'cargo dist init'
[profile.dist]
debug = true
inherits = "release"
split-debuginfo = "packed"