1
Fork 0
shimmeringmoon/Cargo.toml

66 lines
1.8 KiB
TOML
Raw Permalink Normal View History

[package]
name = "shimmeringmoon"
version = "0.1.0"
edition = "2021"
2024-09-23 19:46:53 +02:00
autobins = false
[lib]
name = "shimmeringmoon"
path = "src/lib.rs"
[[bin]]
2024-09-23 22:11:10 +02:00
name = "shimmering-discord-bot"
2024-09-23 19:46:53 +02:00
path = "src/bin/discord-bot/main.rs"
[[bin]]
2024-09-23 22:11:10 +02:00
name = "shimmering-cli"
2024-09-23 19:46:53 +02:00
path = "src/bin/cli/main.rs"
2024-09-24 22:49:09 +02:00
[[bin]]
name = "shimmering-server"
path = "src/bin/server/main.rs"
[[bin]]
name = "shimmering-discord-presence"
path = "src/bin/discord-presence/main.rs"
[dependencies]
chrono = "0.4.38"
freetype-rs = "0.36.0"
image = "0.25.2"
num = "0.4.3"
plotters = { git="https://github.com/starlitcanopy/plotters.git", rev="986cd959362a2dbec8d1b25670fd083b904d7b8c", features=["bitmap_backend"] }
poise = "0.6.1"
hypertesseract = { features=["image"], git="https://github.com/BlueGhostGH/hypertesseract.git", rev="4e05063" }
tokio = {version="1.38.0", features=["rt-multi-thread"]}
imageproc = "0.25.0"
rusqlite = { version = "0.32.1", features = ["bundled", "chrono"] }
r2d2_sqlite = "0.25.0"
r2d2 = "0.8.10"
rusqlite_migration = {version="1.3.0-alpha-without-tokio.1", features = ["from-directory"]}
include_dir = "0.7.4"
2024-09-06 17:31:20 +02:00
serde = "1.0.209"
toml = "0.8.19"
tempfile = "3.12.0"
2024-09-09 18:06:07 +02:00
clap = { version = "4.5.17", features = ["derive"] }
postcard = { version = "1.0.10", features = ["use-std"], default-features = false }
serde_with = "3.9.0"
anyhow = "1.0.87"
2024-09-23 19:46:53 +02:00
sha2 = "0.10.8"
base16ct = { version = "0.2.0", features = ["alloc"] }
2024-09-24 22:49:09 +02:00
axum = { version = "0.7.6", features = ["macros"] }
paste = "1.0.15"
discord-rich-presence = "0.2.4"
reqwest = { version = "0.12.7", features = ["json"] }
2024-10-05 00:44:54 +02:00
faer = { git = "https://github.com/sarah-ek/faer-rs", rev = "4f3eb7e65c69f7f7df3bdd93aa868d5666db3656", features = ["serde"] }
memmap2 = "0.9.5"
2024-10-05 00:44:54 +02:00
[profile.dev.package.imageproc]
opt-level = 3
[profile.dev.package.image]
opt-level = 3
[profile.dev.package.faer]
opt-level = 3