tezlm
a3ca248c59
- update packages - add nix flake - add prepared sqlx queries - fix various compilation errors (this project is still pretty much dead though)
18 lines
648 B
TOML
18 lines
648 B
TOML
[package]
|
|
name = "store-fs"
|
|
description = "blob store, filesystem implementation"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
axum = { version = "0.6.18", features = ["macros", "headers"] }
|
|
futures-util = "0.3.28"
|
|
serde = { version = "1.0.171", features = ["derive"] }
|
|
serde_json = "1.0.96"
|
|
sha2 = { version = "0.10.6", features = ["asm"] }
|
|
sqlx = { version = "0.7.4", features = ["sqlite", "runtime-tokio-rustls"] }
|
|
thiserror = "1.0.40"
|
|
tokio = { version = "1.28.2", features = ["rt-multi-thread", "macros", "fs"] }
|
|
ufh = { path = "../lib" }
|