26 lines
714 B
TOML
26 lines
714 B
TOML
[package]
|
|
name = "highlight-actor"
|
|
version = "0.1.0"
|
|
authors = ["Adrian Wozniak <adrian.wozniak@ita-prog.pl>"]
|
|
edition = "2018"
|
|
description = "BITQUE (Simplified JIRA in Rust) shared data types"
|
|
repository = "https://gitlab.com/adrian.wozniak/bitque"
|
|
license = "MPL-2.0"
|
|
#license-file = "../LICENSE"
|
|
|
|
[lib]
|
|
name = "highlight_actor"
|
|
path = "./src/lib.rs"
|
|
|
|
[dependencies]
|
|
actix = { version = "0.13.0" }
|
|
bincode = { version = "*" }
|
|
bitque-config = { workspace = true, features = ["hi"] }
|
|
bitque-data = { workspace = true, features = ["backend"] }
|
|
flate2 = { version = "*" }
|
|
lazy_static = { version = "*" }
|
|
serde = { version = "*" }
|
|
simsearch = { version = "0.2" }
|
|
syntect = { version = "*" }
|
|
toml = { version = "*" }
|