2023-10-15 13:42:46 +00:00
|
|
|
# SPDX-FileCopyrightText: 2023 Louis Hollingworth <louis@hollingworth.nl>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "fediblog"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2023-10-15 14:06:04 +00:00
|
|
|
[lib]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "fediblog"
|
|
|
|
|
2023-10-15 13:42:46 +00:00
|
|
|
[dependencies]
|
2023-10-15 14:06:04 +00:00
|
|
|
axum = "0.6.20"
|
|
|
|
chrono = "0.4.31"
|
|
|
|
diesel = { version = "2.1.3", features = ["postgres", "extras"] }
|
|
|
|
serde = { version = "1.0.189", features = ["derive"] }
|
|
|
|
serde_json = "1.0.107"
|
|
|
|
tokio = { version = "1.33.0", features = ["full"] }
|