25 lines
796 B
TOML
25 lines
796 B
TOML
[package]
|
|
name = "ol_rusty"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
cached = "0.26"
|
|
chrono = "0.4"
|
|
config = "0.11"
|
|
futures = { version = "0.3.13", default-features = false }
|
|
glob = "0.3"
|
|
lazy_static = "1"
|
|
log = "0.4.14"
|
|
simplelog = "0.11.1"
|
|
poise = { git = "https://github.com/kangalioo/poise", branch = "develop", features = ["collector"] }
|
|
regex = {version="1"}
|
|
reqwest = "0.11"
|
|
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "sqlite", "offline"] }
|
|
sea-orm = { version = "^0", features = [ "sqlx-sqlite", "runtime-tokio-rustls", "macros" ], default-features = false }
|
|
serde_json = "1"
|
|
serde = "1"
|
|
tokio = { version = "1.4.0", features = ["rt-multi-thread", "process"] }
|