32 lines
1.0 KiB
TOML
32 lines
1.0 KiB
TOML
[package]
|
|
name = "trifid-api"
|
|
version = "0.3.0"
|
|
authors = ["core <core@e3t.cc>"]
|
|
edition = "2021"
|
|
description = "An open-source reimplementation of the Defined Networking API server"
|
|
documentation = "https://trifid.e3t.cc/docs/trifid-api/intro"
|
|
homepage = "https://trifid.e3t.cc"
|
|
repository = "https://git.e3t.cc/core/trifid"
|
|
license = "GPL-3"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-web = "4"
|
|
actix-cors = "0.6"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
toml = "0.8"
|
|
log = "0.4"
|
|
env_logger = "0.10"
|
|
diesel = { version = "2", features = ["serde_json"] }
|
|
diesel-async = { version = "0.4", features = ["postgres", "bb8", "async-connection-wrapper"] }
|
|
diesel_migrations = "2"
|
|
bb8 = "0.8"
|
|
rand = "0.8"
|
|
mail-send = "0.4"
|
|
totp-rs = { version = "5.4", features = ["gen_secret", "otpauth"] }
|
|
trifid-pki = { version = "0.1", path = "../trifid-pki", features = ["serde_derive"] }
|
|
chacha20poly1305 = "0.10"
|
|
hex = "0.4"
|
|
thiserror = "1" |