feat: ckanaction crate implementation with GET actions

This commit is contained in:
rzmk 2025-04-30 21:49:03 -04:00
commit d0c36b55c6
No known key found for this signature in database
6 changed files with 3081 additions and 0 deletions

12
Cargo.toml Normal file
View file

@ -0,0 +1,12 @@
[package]
name = "ckanaction"
version = "0.1.0"
edition = "2024"
[dependencies]
bon = "3.6.3"
dotenvy = "0.15.7"
reqwest = { version = "0.12.15", features = ["json"] }
serde = "1.0.219"
serde_json = "1.0.140"
tokio = { version = "1.44.2", features = ["full"] }