This repository has been archived by the owner on Oct 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (51 loc) · 2.22 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
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "umwelt-info"
authors = ["Jakob Deller <[email protected]>", "Stefan Krämer <[email protected]>", "Adam Reichold <[email protected]>"]
repository = "https://github.com/adamreichold/umwelt-info"
license = "AGPL-3.0"
publish = false
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0"
askama = { version = "0.11", default-features = false, features = ["urlencode"] }
async-compression = { version = "0.3", features = ["tokio", "zstd"] }
axum = { version = "0.5", default-features = false, features = ["http1", "query", "json", "tower-log"] }
bincode = "1.3"
bytes = "1.2"
cap-std = "0.25"
futures-util = { version = "0.3", default-features = false }
once_cell = { version = "1.13", features = ["parking_lot"] }
hashbrown = { version = "0.12", features = ["serde"] }
parking_lot = "0.12"
rayon = "1.5"
regex = "1.6"
reqwest = { version = "0.11", features = ["json"] }
scraper = { version = "0.13", default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde-roxmltree = "0.3"
smallvec = { version = "1.9", features = ["union", "const_generics", "serde"] }
string_cache = "0.8"
tantivy = { version = "0.18", default-features = false, features = ["mmap"] }
time = { version = "0.3", features = ["formatting", "macros"] }
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "fs", "parking_lot"] }
toml = "0.5"
tower = { version = "0.4", features = ["limit", "load-shed"] }
tower-http = { version = "0.3", features = ["trace"] }
tracing = { version = "0.1", features = ["release_max_level_debug"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = { version = "2.2", features = ["serde"] }
[dev-dependencies]
tokio = { version = "1.0", features = ["test-util"] }
[package.metadata.deb]
maintainer-scripts = "deployment"
assets = [
["target/release/harvester", "usr/bin/", "755"],
["target/release/indexer", "usr/bin/", "755"],
["target/release/server", "usr/bin/", "755"],
["deployment/harvester.service", "etc/systemd/system/", "644"],
["deployment/harvester.timer", "etc/systemd/system/", "644"],
["deployment/indexer.service", "etc/systemd/system/", "644"],
["deployment/server.service", "etc/systemd/system/", "644"],
]