Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Ifb3cf9ad9747795b44eff1ee8cd538536a6a6964
16 lines
532 B
TOML
16 lines
532 B
TOML
[package]
|
|
name = "ncro-db"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
chrono = { workspace = true, features = [ "serde" ] }
|
|
serde = { workspace = true, features = [ "derive" ] }
|
|
sqlx = { workspace = true, features = [ "runtime-tokio-rustls", "sqlite", "macros", "migrate", "chrono" ] }
|
|
thiserror.workspace = true
|
|
tokio = { workspace = true, features = [ "fs" ] }
|
|
|
|
[lints]
|
|
workspace = true
|