summaryrefslogtreecommitdiff
path: root/crates/nixpkgs-tracker-http/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'crates/nixpkgs-tracker-http/Cargo.toml')
-rw-r--r--crates/nixpkgs-tracker-http/Cargo.toml22
1 files changed, 22 insertions, 0 deletions
diff --git a/crates/nixpkgs-tracker-http/Cargo.toml b/crates/nixpkgs-tracker-http/Cargo.toml
new file mode 100644
index 0000000..45b897d
--- /dev/null
+++ b/crates/nixpkgs-tracker-http/Cargo.toml
@@ -0,0 +1,22 @@
+[package]
+name = "nixpkgs-tracker-http"
+version.workspace = true
+authors.workspace = true
+edition.workspace = true
+repository.workspace = true
+license.workspace = true
+
+publish = false
+
+[dependencies]
+log.workspace = true
+reqwest = { version = "0.12.5", default-features = false, features = [
+ "charset",
+ "http2",
+ "rustls-tls",
+ "json"
+] }
+serde = { version = "1.0.204", features = ["derive"] }
+
+[lints]
+workspace = true