trifid/trifid-api/Cargo.toml

26 lines
774 B
TOML
Raw Normal View History

2023-02-02 23:38:39 +00:00
[package]
name = "trifid-api"
2023-11-19 03:51:45 +00:00
version = "0.3.0"
authors = ["core <core@e3t.cc>"]
2023-02-02 23:38:39 +00:00
edition = "2021"
2023-11-19 03:51:45 +00:00
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"
2023-02-02 23:38:39 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-11-19 03:51:45 +00:00
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" }
diesel-async = { version = "0.4", features = ["postgres", "bb8", "async-connection-wrapper"] }
diesel_migrations = "2"
2023-11-19 15:49:08 +00:00
bb8 = "0.8"
rand = "0.8"