43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[package]
|
|
name = "quickpeep_indexer"
|
|
authors = ["Olivier 'reivilibre'"]
|
|
license = "MIT OR Apache-2.0"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.56"
|
|
tokio = { version = "1.17.0", features = ["full"] }
|
|
log = "0.4.16"
|
|
env_logger = "0.9.0"
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
serde_bare = "0.5.0"
|
|
serde_json = "1.0.79"
|
|
ron = "0.7.0"
|
|
clap = { version = "3.1.6", features = ["derive"] }
|
|
colour = "0.6.0"
|
|
url = "2.2.2"
|
|
|
|
blake3 = "1.3.1"
|
|
|
|
smartstring = "1.0.1"
|
|
|
|
# Used for efficient lookup of seeds (URL prefixes)
|
|
patricia_tree = "0.3.1"
|
|
|
|
# For decompression of emitted packs. 0.11.1+zstd.1.5.2
|
|
zstd = "0.11.1"
|
|
|
|
# HTTP Requests
|
|
reqwest = { version = "0.11.9", features = ["blocking"] }
|
|
|
|
tempfile = "3.3.0"
|
|
|
|
quickpeep_densedoc = { path = "../quickpeep_densedoc" }
|
|
quickpeep_index = { path = "../quickpeep_index" }
|
|
quickpeep_structs = { path = "../quickpeep_structs" }
|
|
quickpeep_seed_parser = { path = "../quickpeep_seed_parser" }
|
|
quickpeep_utils = { path = "../quickpeep_utils" }
|