Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I02ee54baee048c58a480522ce79159eb6a6a6964
18 lines
609 B
TOML
18 lines
609 B
TOML
[package]
|
|
name = "ncro-db"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[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
|