forked from KonradHoeffner/rickview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (39 loc) · 1.29 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "rickview"
version = "0.0.7"
edition = "2021"
license = "MIT"
keywords = ["rdf", "semantic-web", "linked-data"]
categories = ["web-programming::http-server"]
description = "A fast RDF viewer (Linked Data browser)"
authors = ["Konrad Höffner"]
readme = "README.md"
repository = "https://github.com/konradhoeffner/rickview"
[dependencies]
sophia = "0.7"
actix-web = "4"
multimap = "0.8"
tinytemplate = "1"
serde = { version = "1", features = ["derive"] }
config = { version = "0.13", default-features = false, features = ["toml"] }
log = "0.4"
env_logger = { version = "0.10", default-features = false, features = ["auto-color"], optional = true }
hdt = { version = "0.0.12", optional = true }
deepsize = { version = "0.2.0", default-features = false, features = ["std"] }
bytesize = "1.1.0"
zstd = { version = "0.12.0", features = ["zstdmt"] }
comrak = { version = "0.16.0", default-features = false, features = [] }
once_cell = "1.17.0"
base64 = "0.21.0"
[features]
default = ["rdfxml", "log", "hdt"]
rdfxml = ["sophia/xml"]
log = ["env_logger"]
hdt = ["dep:hdt"]
[profile.release]
# see https://fasterthanli.me/articles/why-is-my-rust-build-so-slow
lto = "thin"
# when profiling, set debug to 1 and strip to false
#debug = 1
strip = true
incremental = true # disable in CI with CARGO_INCREMENTAL=0