upend/Cargo.toml

103 lines
2.2 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-10-16 16:48:54 +02:00
version = "0.0.64"
2022-07-23 16:30:37 +02:00
homepage = "https://upend.dev/"
2021-06-19 10:07:56 +02:00
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"
2020-09-06 12:32:48 +02:00
log = "0.4"
2022-08-07 12:13:12 +02:00
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
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"
num_cpus = "1.13"
futures = "0.3.24"
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"
2022-09-08 21:41:18 +02:00
actix-cors = "0.5"
jsonwebtoken = "8"
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"
regex = "1"
multibase = "0.9"
multihash = { version = "*", default-features = false, features = ["alloc", "multihash-impl", "sha2", "identity"] }
uuid = { version = "0.8", features = ["v4"] }
filebuffer = "0.4.0"
2021-12-26 18:16:37 +01:00
tempfile = "^3.2.0"
2020-08-27 00:11:50 +02:00
walkdir = "2"
rand = "0.8"
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-02-10 11:38:45 +01:00
webpage = { version = "1.4.0", optional = true }
2022-02-28 21:36:55 +01:00
id3 = { version = "1.0.2", optional = true }
kamadak-exif = { version = "0.5.4", optional = true }
2022-02-10 11:38:45 +01:00
shadow-rs = "0.17"
2022-01-31 15:17:59 +01:00
[build-dependencies]
shadow-rs = "0.17"
2022-01-31 15:17:59 +01:00
2021-12-19 20:09:44 +01:00
[features]
2022-02-28 21:36:55 +01:00
default = [
"desktop",
"previews",
"previews-image",
"extractors-web",
"extractors-audio",
"extractors-photo",
2022-02-28 21:36:55 +01:00
]
2021-12-19 22:38:41 +01:00
desktop = ["webbrowser", "opener", "is_executable"]
2021-12-27 12:40:02 +01:00
previews = []
previews-image = ["image", "webp", "kamadak-exif"]
2022-02-10 11:38:45 +01:00
extractors-web = ["webpage"]
2022-02-28 21:36:55 +01:00
extractors-audio = ["id3"]
extractors-photo = ["kamadak-exif"]