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

46 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"
2022-03-09 18:58:46 +00:00
actix = "0.13.0"
2023-05-31 17:10:05 +00:00
actix-web = "4.3.1"
2022-08-04 11:32:09 +00:00
actix-files = "0.6.2"
2023-05-31 17:10:05 +00:00
actix-multipart = "0.6.0"
actix-web-actors = "4.2.0"
actix-http = "3.3.1"
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
futures = "0.3.28"
encoding_rs = "0.8.32"
percent-encoding = "2.2.0"
mailchecker = "5.0.9"
sha1 = "0.10.5"
2022-08-04 11:32:09 +00:00
rand = "0.8.5"
2021-02-19 15:44:50 +00:00
chrono = "0.4.19"
2022-08-04 11:32:09 +00:00
bytes = "1.2.1"
image = "0.24.3"
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"
2023-05-31 17:10:05 +00:00
pdf = "0.8.1"
2022-08-04 11:32:09 +00:00
regex = "1.6.0"
dashmap = "5.3.4"
reqwest = { version = "0.11.11", features = ["json"] }
webrtc-sdp = "0.3.9"
2023-05-31 17:10:05 +00:00
bcrypt = "0.14.0"
2022-08-04 11:32:09 +00:00
mp3-metadata = "0.3.4"
2023-05-31 17:10:05 +00:00
mp4 = "0.13.0"
2022-06-11 09:08:53 +00:00
zip = "0.6.2"
2022-08-04 11:32:09 +00:00
webpage = "1.4.0"
gouth = "0.2.1"
2022-08-24 18:08:29 +00:00
webauthn-rs = "0.4.3"
2022-03-12 06:47:22 +00:00
url = "2.2.2"
2022-03-12 07:02:58 +00:00
async-recursion = "1.0.0"
2022-08-04 11:32:09 +00:00
tokio = { version = "1.20.1", features = ["rt-multi-thread"] }