Initial commit: Full Crawl API implementation
This commit is contained in:
39
crates/api/Cargo.toml
Normal file
39
crates/api/Cargo.toml
Normal file
@@ -0,0 +1,39 @@
|
||||
[package]
|
||||
name = "api"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
shared = { path = "../shared" }
|
||||
db = { path = "../db" }
|
||||
axum = { workspace = true, features = ["ws"] }
|
||||
tokio = { workspace = true }
|
||||
tower = { workspace = true }
|
||||
tower-http = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
tracing-subscriber = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
redis = { workspace = true }
|
||||
uuid = { workspace = true }
|
||||
chrono = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
anyhow = { workspace = true }
|
||||
aws-config = { workspace = true }
|
||||
aws-sdk-s3 = { workspace = true }
|
||||
reqwest = { workspace = true }
|
||||
jsonwebtoken = { workspace = true }
|
||||
bcrypt = { workspace = true }
|
||||
config = { workspace = true }
|
||||
argon2 = { workspace = true }
|
||||
url = { workspace = true }
|
||||
sqlx = { workspace = true }
|
||||
regex = { workspace = true }
|
||||
scraper = { workspace = true }
|
||||
markdown = { workspace = true }
|
||||
md5 = "0.7"
|
||||
prometheus = "0.13"
|
||||
lazy_static = "1.5"
|
||||
sentry = "0.36"
|
||||
async-stripe = { version = "1.0.0-rc.5", features = ["default-tls"] }
|
||||
aws-sdk-secretsmanager = "1.0"
|
||||
Reference in New Issue
Block a user