1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//! Experimental client for EDC (Eclipse Dataspace Connector)
//!
//! You can use edc-connector-client this lines in your `Cargo.toml`
//!
//! ```toml
//! [dependencies]
//! edc-connector-client = "<version>"
//! ```
//!
//! Here it is an usage example:
//!
//!
//! ```rust,no_run
//!
//! use edc_connector_client::{EdcConnectorClient, Auth};
//!
//!
//!#[tokio::main]
//!async fn main() -> Result<(), Box<dyn std::error::Error>> {
//!
//! let client = EdcConnectorClient::builder()
//! .management_url("http://myedc")
//! .with_auth(Auth::api_token("password"))
//! .build()?;
//!
//! let asset = client.assets().get("1").await?;
//! println!("Got {:?}", asset);
//!
//! Ok(())
//!}
//!
pub use ;
pub use ;
pub const EDC_NAMESPACE: &str = "https://w3id.org/edc/v0.0.1/ns/";
pub const DATASPACE_PROTOCOL: &str = "dataspace-protocol-http";
pub type EdcResult<T> = ;