Skip to content
Snippets Groups Projects
Cargo.toml 934 B
Newer Older
[package]
name = "commoncrawl_graph"
version = "0.1.0"
edition = "2021"
Stephen D's avatar
Stephen D committed
description = "Utility to look at Common Crawl graphs"
license = "MIT"

[package.metadata.deb]
assets = [
    ["target/release/serve", "usr/bin/commoncrawl_graph_serve", "755"],
    ["target/release/import", "usr/bin/commoncrawl_graph_import", "755"],
Stephen D's avatar
Stephen D committed
    ["debian/commoncrawl_graph_serve.service", "/lib/systemd/system/", "644"]
Stephen D's avatar
Stephen D committed
]
Stephen D's avatar
Stephen D committed
maintainer-scripts = "debian/maintainer_scripts/"
Stephen D's avatar
Stephen D committed
copyright = "2024, Stephen D <@stephen:crabsin.space>"
maintainer = "Stephen D <@stephen:crabsin.space>"

[dependencies]
anyhow = "1.0.89"
Stephen D's avatar
Stephen D committed
axum = "0.7.7"
Stephen D's avatar
Stephen D committed
datadog-statsd = "0.1.2"
flate2 = "1.0.34"
futures = "0.3.31"
Stephen D's avatar
Stephen D committed
html-escape = "0.2.13"
itertools = "0.13.0"
reqwest = "0.12.8"
Stephen D's avatar
Stephen D committed
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
sqlx = { version = "0.8.2", features = ["postgres", "runtime-tokio"] }
tokio = { version = "1.40.0", features = ["full"] }