You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
2 years ago
|
[workspace]
|
||
|
members = [".", "entity", "migration"]
|
||
|
|
||
|
[package]
|
||
|
name = "v"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
entity = { path = "entity" }
|
||
|
migration = { path = "migration" }
|
||
|
|
||
|
dotenv = "0.15.0"
|
||
|
pretty_env_logger = "0.4.0"
|
||
|
sea-orm = { version = "0.11", features = ["runtime-tokio-rustls", "sqlx-postgres"] }
|
||
|
serde = { version = "1.0.163", features = ["derive"] }
|
||
|
tera = "1.18.1"
|
||
|
time = { version = "0.3.21", features = ["formatting", "macros"] }
|
||
|
tokio = { version = "1.28.1", features = ["full"] }
|
||
|
tracing-subscriber = { version = "0.3.17", features = ["time", "json"] }
|
||
|
tracing = "0.1.37"
|
||
|
serde_json = "1.0.96"
|
||
|
miette = { version = "5.8.0", features = ["fancy"] }
|
||
|
axum = { version = "0.6.18", features = ["tracing", "multipart", "headers", "macros"] }
|
||
|
tower-http = { version = "0.4.0", features = ["full"] }
|
||
|
dashmap = "5.4.0"
|
||
|
uuid = { version = "1.3.3", features = ["v7", "serde", "v4"] }
|
||
|
argon2 = "0.5.0"
|
||
|
cookie = { version = "0.17.0", features = ["secure", "percent-encode"] }
|
||
|
tower = { version = "0.4.13", features = ["tokio", "tracing"] }
|
||
|
nanoid = "0.4.0"
|