e548d6f1f8
* cargo: add log as a workspace dependency * cargo: add authors to top-level workspace * cargo: add a few more entried to workspace package
20 lines
643 B
TOML
20 lines
643 B
TOML
[package]
|
|
name = "credential-storage"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-trait = { version = "0.1.51" }
|
|
|
|
log = { workspace = true }
|
|
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"]}
|
|
thiserror = "1.0"
|
|
tokio = { version = "1.24.1", features = [ "rt-multi-thread", "net", "signal", "fs" ] }
|
|
|
|
|
|
[build-dependencies]
|
|
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"] }
|
|
tokio = { version = "1.24.1", features = ["rt-multi-thread", "macros"] }
|