(Feat): Initial Commit
This commit is contained in:
30
backend_api/Cargo.toml
Normal file
30
backend_api/Cargo.toml
Normal file
@@ -0,0 +1,30 @@
|
||||
[package]
|
||||
name = "backend_api"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
poem = "3.1.12"
|
||||
poem-openapi = { version = "5.1.16", features = ["swagger-ui"] }
|
||||
tokio = { version = "1.48.0", features = ["full"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls", "multipart"] }
|
||||
sha2 = "0.10"
|
||||
hex = "0.4"
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
toml = "0.8"
|
||||
anyhow = "1.0"
|
||||
thiserror = "1.0"
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
image = "0.25"
|
||||
base64 = "0.22"
|
||||
tesseract = { version = "0.14", optional = true }
|
||||
validator = { version = "0.18", features = ["derive"] }
|
||||
strum = { version = "0.26", features = ["derive"] }
|
||||
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "sqlite", "postgres", "chrono"] }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
ocr = ["tesseract"]
|
||||
Reference in New Issue
Block a user