-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
42 lines (39 loc) · 1.2 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.3.6"
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"
rust-version = "1.80"
[dependencies]
sophia = "0.8.0"
actix-web = "4"
multimap = "0.10"
tinytemplate = "1"
serde = { version = "1", features = ["derive"] }
config = { version = "0.14", default-features = false, features = ["toml"] }
log = "0.4"
env_logger = { version = "0.11", default-features = false, features = ["auto-color"] }
hdt = { version = "0.2", optional = true }
deepsize = { version = "0.2", default-features = false, features = ["std"] }
bytesize = "1"
zstd = { version = "0.13", features = ["zstdmt"] }
ureq = "2"
const-fnv1a-hash = "1"
serde_json = "1"
[features]
default = ["rdfxml", "hdt"]
rdfxml = ["sophia/xml"]
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