bbb46ebd90
* updated 'tokio' to 1.24.1 in the whole codebase * ibid for 'tokio-stream' * ibid for 'tokio-util' * Removed lock file from verify-signature example
20 lines
628 B
TOML
20 lines
628 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 = "0.4"
|
|
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"] }
|