activitypub/Cargo.toml

33 lines
702 B
TOML
Raw Normal View History

2024-01-26 21:01:43 +01:00
[package]
2024-03-21 12:41:02 +01:00
name = "lysand-ap-layer"
2024-01-26 21:01:43 +01:00
version = "0.1.0"
edition = "2021"
build = "build.rs"
2024-03-21 12:41:02 +01:00
authors = ["April John <aprl@acab.dev>"]
2024-01-26 21:01:43 +01:00
[dependencies]
tokio = { version = "1.20.0", features = ["rt", "macros"] }
sea-orm = { version = "0.12.12", features = [
"sqlx-postgres",
"runtime-tokio-native-tls",
"with-json",
] }
serde = { version = "1.0.130", features = ["derive"] }
actix-web = "4"
env_logger = "0.11.0"
2024-03-21 12:41:02 +01:00
clap = { version = "4.3.14", features = ["derive"] }
2024-01-26 21:01:43 +01:00
[target.'cfg(unix)'.dependencies]
openssl = { version = "0.10.63", features = ["vendored"] }
[build-dependencies]
vcpkg = "0.2.15"
[profile.release]
strip = true
opt-level = 's'
lto = true
debug = 0
codegen-units = 1
panic = 'abort'