2020-12-24 16:24:04 +01:00
|
|
|
[package]
|
|
|
|
name = "filesystem-actor"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Adrian Wozniak <adrian.wozniak@ita-prog.pl>"]
|
|
|
|
edition = "2018"
|
|
|
|
description = "JIRS (Simplified JIRA in Rust) shared data types"
|
|
|
|
repository = "https://gitlab.com/adrian.wozniak/jirs"
|
|
|
|
license = "MPL-2.0"
|
|
|
|
#license-file = "../LICENSE"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "filesystem_actor"
|
|
|
|
path = "./src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-08-13 12:42:29 +02:00
|
|
|
common = { path = "../../shared/common" }
|
2020-12-24 16:24:04 +01:00
|
|
|
actix = { version = "0.10.0" }
|
2021-08-13 13:11:51 +02:00
|
|
|
actix-files = { version = "0.5.0" }
|
2020-12-24 16:24:04 +01:00
|
|
|
|
|
|
|
futures = { version = "0.3.8" }
|
|
|
|
|
|
|
|
[dependencies.jirs-config]
|
|
|
|
path = "../../shared/jirs-config"
|
|
|
|
features = ["local-storage"]
|
|
|
|
|
|
|
|
[dependencies.tokio]
|
|
|
|
version = "0.2.23"
|
|
|
|
features = ["dns"]
|