upend/Cargo.toml

79 lines
1.7 KiB
TOML
Raw Normal View History

2020-08-27 00:11:50 +02:00
[package]
2021-06-19 10:07:56 +02:00
name = "upend"
description = "A user-oriented all-purpose graph database."
2022-01-31 15:17:59 +01:00
version = "0.0.24"
2021-06-19 10:07:56 +02:00
homepage = "https://upendproject.net/"
repository = "https://gitlab.com/tmladek/upend/"
2020-08-27 00:11:50 +02:00
authors = ["Tomáš Mládek <t@mldk.cz>"]
2021-06-19 10:07:56 +02:00
license = "AGPL-3.0-or-later"
2020-08-27 00:11:50 +02:00
edition = "2018"
2022-01-31 15:17:59 +01:00
build = "build.rs"
2020-08-27 00:11:50 +02:00
[dependencies]
clap = "2.33.0"
env_logger = "^0.8"
2020-09-06 12:32:48 +02:00
log = "0.4"
2020-08-27 00:11:50 +02:00
anyhow = "1.0"
2020-09-07 21:21:54 +02:00
thiserror = "1.0"
2020-08-27 00:11:50 +02:00
rayon = "1.4.0"
2021-02-19 21:58:35 +01:00
futures-util = "~0.3.12"
lazy_static = "1.4.0"
once_cell = "1.7.2"
2021-12-04 18:33:40 +01:00
lru = "0.7.0"
2021-12-21 23:10:47 +01:00
diesel = { version = "1.4", features = [
"sqlite",
"r2d2",
"chrono",
"serde_json",
] }
diesel_migrations = "1.4"
libsqlite3-sys = { version = "^0", features = ["bundled"] }
2020-09-06 12:32:17 +02:00
actix = "^0.10"
actix-files = "^0.5"
2021-02-18 20:48:31 +01:00
actix-rt = "^2.0"
actix-web = "^3.3"
actix_derive = "^0.5"
2020-08-27 00:11:50 +02:00
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
2020-09-07 21:21:54 +02:00
serde_json = "1.0"
lexpr = "0.2.6"
2021-02-18 20:48:31 +01:00
bs58 = "^0.4"
2020-08-27 00:11:50 +02:00
filebuffer = "0.4.0"
tiny-keccak = { version = "2.0", features = ["k12"] }
2021-02-18 20:48:31 +01:00
unsigned-varint = { version = "^0", features = ["std"] }
uuid = { version = "0.8", features = ["v4"] }
2021-12-26 18:16:37 +01:00
tempfile = "^3.2.0"
2020-08-27 00:11:50 +02:00
walkdir = "2"
mime = "^0.3.16"
tree_magic_mini = "3.0.2"
2020-08-27 00:11:50 +02:00
dotenv = "0.15.0"
2020-09-06 12:32:48 +02:00
xdg = "^2.1"
2021-12-19 22:38:41 +01:00
opener = { version = "^0.5.0", optional = true }
is_executable = { version = "1.0.1", optional = true }
2021-12-19 20:09:44 +01:00
webbrowser = { version = "^0.5.5", optional = true }
nonempty = "0.6.0"
actix-multipart = "0.3.0"
2022-01-24 17:04:27 +01:00
image = { version = "0.23.14", optional = true }
webp = { version = "0.2.0", optional = true }
2022-01-31 15:17:59 +01:00
[build-dependencies]
built = "0.5.1"
2021-12-19 20:09:44 +01:00
[features]
2022-01-24 17:04:27 +01:00
default = ["desktop", "previews", "previews-image"]
2021-12-19 22:38:41 +01:00
desktop = ["webbrowser", "opener", "is_executable"]
2021-12-27 12:40:02 +01:00
previews = []
2022-01-24 17:04:27 +01:00
previews-image = ["image", "webp"]