1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2024-11-22 05:19:21 +00:00
comunicapiv3/Cargo.toml

47 lines
1.1 KiB
TOML
Raw Normal View History

2020-05-20 15:46:05 +00:00
[package]
name = "comunic_server"
version = "0.1.0"
authors = ["Pierre HUBERT <pierre.git@communiquons.org>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-02-19 15:44:50 +00:00
yaml-rust = "0.4.5"
2023-05-31 17:10:05 +00:00
mysql = "24.0.0"
2024-01-05 08:57:37 +00:00
actix = "0.13.1"
actix-web = "4.4.0"
2022-08-04 11:32:09 +00:00
actix-files = "0.6.2"
2024-01-05 08:57:37 +00:00
actix-multipart = "0.6.1"
2023-05-31 17:10:05 +00:00
actix-web-actors = "4.2.0"
actix-http = "3.3.1"
serde = { version = "1.0.163", features = ["derive"] }
2024-01-05 08:57:37 +00:00
serde_json = "1.0.108"
futures = "0.3.29"
encoding_rs = "0.8.33"
percent-encoding = "2.3.1"
mailchecker = "6.0.1"
sha1 = "0.10.6"
2022-08-04 11:32:09 +00:00
rand = "0.8.5"
2024-01-05 08:57:37 +00:00
chrono = "0.4.31"
bytes = "1.5.0"
image = "0.24.7"
2022-08-04 11:32:09 +00:00
kamadak-exif = "0.5.4"
2020-07-08 09:03:17 +00:00
lazy_static = "1.4.0"
2022-08-04 11:32:09 +00:00
mime_guess = "2.0.4"
2024-01-05 08:57:37 +00:00
pdf = "0.9.0"
regex = "1.10.2"
dashmap = "5.5.3"
reqwest = { version = "0.11.23", features = ["json"] }
2022-08-04 11:32:09 +00:00
webrtc-sdp = "0.3.9"
2024-01-05 08:57:37 +00:00
bcrypt = "0.15.0"
2022-08-04 11:32:09 +00:00
mp3-metadata = "0.3.4"
2024-01-05 08:57:37 +00:00
mp4 = "0.14.0"
2022-06-11 09:08:53 +00:00
zip = "0.6.2"
2024-01-05 08:57:37 +00:00
webpage = "2.0.0"
2022-08-04 11:32:09 +00:00
gouth = "0.2.1"
2022-08-24 18:08:29 +00:00
webauthn-rs = "0.4.3"
2024-01-05 08:57:37 +00:00
url = "2.5.0"
async-recursion = "1.0.5"
tokio = { version = "1.35.0", features = ["rt-multi-thread"] }