mirror of
https://github.com/dathere/ckanaction.git
synced 2026-02-04 02:05:32 +00:00
Compare commits
5 commits
6df4f863f1
...
143b1b9863
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
143b1b9863 | ||
|
|
3bf83b55e9 | ||
|
|
6785fb4c2a | ||
|
|
f58eef826e | ||
|
|
723130792c |
7 changed files with 2135 additions and 417 deletions
765
Cargo.lock
generated
765
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
12
Cargo.toml
12
Cargo.toml
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ckanaction"
|
||||
version = "0.1.2"
|
||||
version = "0.1.3"
|
||||
edition = "2024"
|
||||
description = "Rust library crate featuring an API wrapper of the CKAN Action v3 API."
|
||||
repository = "https://github.com/dathere/ckanaction"
|
||||
|
|
@ -11,10 +11,10 @@ categories = ["api-bindings", "asynchronous"]
|
|||
exclude = ["/docs"]
|
||||
|
||||
[dependencies]
|
||||
bon = "3.6.3"
|
||||
reqwest = { version = "0.12.15", features = ["json", "multipart", "stream"] }
|
||||
serde = "1.0.219"
|
||||
serde_json = "1.0.140"
|
||||
bon = "3.8.2"
|
||||
reqwest = { version = "0.12.28", features = ["json", "multipart", "stream"] }
|
||||
serde = "1.0.228"
|
||||
serde_json = "1.0.149"
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "1.45.1", features = ["full"] }
|
||||
tokio = { version = "1.49.0", features = ["full"] }
|
||||
|
|
|
|||
2
examples/status-show/.gitignore
vendored
Normal file
2
examples/status-show/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
.env
|
||||
target/
|
||||
1742
examples/status-show/Cargo.lock
generated
Normal file
1742
examples/status-show/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
8
examples/status-show/Cargo.toml
Normal file
8
examples/status-show/Cargo.toml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
[package]
|
||||
name = "status-show"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
ckanaction = "0.1.3"
|
||||
tokio = { version = "1.49.0", features = ["full"] }
|
||||
9
examples/status-show/README.md
Normal file
9
examples/status-show/README.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# Example of using ckanaction to run the /status_show API endpoint
|
||||
|
||||
## Usage
|
||||
|
||||
Run the following command to run the `/status_show` CKAN Action API endpoint on `http://localhost:5000` and print the formatted debug output.
|
||||
|
||||
```bash
|
||||
cargo run
|
||||
```
|
||||
14
examples/status-show/src/main.rs
Normal file
14
examples/status-show/src/main.rs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#[tokio::main]
|
||||
async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||
|
||||
// Initialize and build CKAN struct
|
||||
let ckan = ckanaction::CKAN::builder()
|
||||
.url("http://localhost:5000")
|
||||
.build();
|
||||
|
||||
// Send request to /status_show and print formatted debug output
|
||||
let status_show = ckan.status_show().await?;
|
||||
println!("{status_show:#?}");
|
||||
|
||||
Ok(())
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue