upend/Cargo.toml

70 lines
1.3 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."
2023-03-08 07:44:47 +01:00
version = "0.0.70"
2022-07-23 16:30:37 +02:00
homepage = "https://upend.dev/"
2023-04-25 19:27:42 +02:00
repository = "https://git.thm.place/thm/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
[workspace]
members = ["cli"]
2020-08-27 00:11:50 +02:00
[dependencies]
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
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"] }
url = { version = "2", features = ["serde"] }
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"
tree_magic_mini = "3.0.2"
nonempty = "0.6.0"
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"