monorepo/visions/server/Cargo.toml

32 lines
818 B
TOML
Raw Normal View History

[package]
name = "visions"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
authdb = { path = "../../authdb/" }
http = { version = "1" }
serde_json = { version = "*" }
serde = { version = "1" }
tokio = { version = "1", features = [ "full" ] }
warp = { version = "0.3" }
mime_guess = "2.0.5"
mime = "0.3.17"
uuid = { version = "1.11.0", features = ["v4"] }
tokio-stream = "0.1.16"
2024-11-19 13:53:04 +00:00
typeshare = "1.0.4"
urlencoding = "2.1.3"
thiserror = "2.0.3"
2024-11-29 22:26:06 +00:00
rusqlite = "0.32.1"
rusqlite_migration = { version = "1.3.1", features = ["from-directory"] }
lazy_static = "1.5.0"
include_dir = "0.7.4"
async-trait = "0.1.83"
futures = "0.3.31"
2024-11-30 17:05:31 +00:00
async-std = "1.13.0"
2024-11-24 14:21:58 +00:00
[dev-dependencies]
cool_asserts = "2.0.3"