[package] name = "articles-rs" version = "0.1.1" license = "MIT OR Apache-2.0" edition = "2021" description = "interacts with an articles database" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = "0.1.81" sqlx = { version = "0.8.1", features = [ "runtime-tokio-native-tls", "postgres", "uuid", "chrono", ] } tokio = { version = "1.4", features = ["full"] } chrono = { version = "0.4.38", features = ["serde"] } uuid = { version = "1.10", features = ["serde", "v4"] } serde = { version = "1.0.207", features = ["derive"] } serde_json = "1.0.114"