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]
|
2020-05-21 07:21:58 +00:00
|
|
|
yaml-rust = "0.4.3"
|
|
|
|
mysql = "18.2.0"
|
2021-02-05 12:21:10 +00:00
|
|
|
actix = "0.9.0"
|
2020-05-21 13:28:07 +00:00
|
|
|
actix-web = "2.0.0"
|
|
|
|
actix-rt = "1.1.1"
|
2020-06-20 08:31:58 +00:00
|
|
|
actix-multipart = "0.2.0"
|
2021-02-05 12:21:10 +00:00
|
|
|
actix-web-actors = "2.0.0"
|
|
|
|
serde = { version = "1.0.110", features = ["derive"] }
|
2020-06-18 16:16:46 +00:00
|
|
|
serde_json = "1.0.53"
|
2020-05-23 07:37:21 +00:00
|
|
|
futures = "0.3.5"
|
|
|
|
encoding_rs = "0.8.23"
|
2020-05-23 15:09:28 +00:00
|
|
|
percent-encoding = "2.1.0"
|
2020-05-24 12:23:03 +00:00
|
|
|
mailchecker = "3.3.6"
|
2020-05-24 14:35:54 +00:00
|
|
|
sha1 = "0.6.0"
|
2020-06-01 07:38:00 +00:00
|
|
|
rand = "0.7.3"
|
2020-06-20 09:37:29 +00:00
|
|
|
chrono = "0.4.11"
|
2020-06-20 13:22:41 +00:00
|
|
|
bytes = "0.5.4"
|
2020-06-22 08:35:39 +00:00
|
|
|
image = "0.23.5"
|
2020-06-23 16:55:23 +00:00
|
|
|
kamadak-exif = "0.5.1"
|
2020-07-08 09:03:17 +00:00
|
|
|
lazy_static = "1.4.0"
|
2020-07-08 15:14:55 +00:00
|
|
|
mime_guess = "2.0.3"
|
2021-01-20 17:31:01 +00:00
|
|
|
pdf = "0.6.3"
|
2021-01-22 18:39:14 +00:00
|
|
|
regex = "1.4.2"
|
2021-02-05 12:21:10 +00:00
|
|
|
dashmap = "3.11.10"
|
2021-02-11 17:29:29 +00:00
|
|
|
reqwest = { version = "0.10.6", features = ["json", "blocking"] }
|
|
|
|
webrtc-sdp = "0.3.6"
|