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"
|
2023-04-04 17:14:31 +02:00
|
|
|
description = "BITQUE (Simplified JIRA in Rust) shared data types"
|
2023-03-31 23:25:20 +02:00
|
|
|
repository = "https://gitlab.com/adrian.wozniak/bitque"
|
2020-12-24 16:24:04 +01:00
|
|
|
license = "MPL-2.0"
|
|
|
|
#license-file = "../LICENSE"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "filesystem_actor"
|
|
|
|
path = "./src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-03-31 23:25:20 +02:00
|
|
|
actix = { version = "0.13.0" }
|
|
|
|
actix-files = { version = "0.6.2" }
|
|
|
|
bitque-config = { workspace = true, features = ["local-storage"] }
|
|
|
|
bytes = { version = "1.4.0" }
|
2020-12-24 16:24:04 +01:00
|
|
|
futures = { version = "0.3.8" }
|
2023-03-31 23:25:20 +02:00
|
|
|
tokio = { version = "1", features = ["full"] }
|