bitque/shared/common/Cargo.toml

30 lines
705 B
TOML
Raw Normal View History

2021-08-13 12:42:29 +02:00
[package]
name = "common"
version = "0.1.0"
authors = ["Adrian Wozniak <adrian.wozniak@ita-prog.pl>"]
edition = "2018"
description = "JIRS (Simplified JIRA in Rust) Actix server"
repository = "https://gitlab.com/adrian.wozniak/jirs"
license = "MPL-2.0"
[dependencies]
actix = { version = "0.10.0" }
2021-08-13 13:11:51 +02:00
actix-web = { version = "3.3.2" }
actix-cors = { version = "0.5.4" }
actix-service = { version = "1.0.6" }
2021-08-13 12:42:29 +02:00
actix-rt = { version = "1" }
2021-08-13 13:11:51 +02:00
actix-web-actors = { version = "3.0.0" }
actix_derive = { version = "0.5.0" }
2021-08-13 12:42:29 +02:00
serde = { version = "*" }
serde_derive = { version = "*" }
2021-08-13 12:56:11 +02:00
log = "0.4"
pretty_env_logger = "0.4"
env_logger = "0.7"
2021-08-13 12:42:29 +02:00
reexport-proc-macro = { version = "*" }
2021-08-13 14:01:00 +02:00
bytes = { version = "0.5.6" }