ckandex 0.6.3

An indexer and API for CKAN, written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct GitLabNamespace {
    pub id: i32,
    pub name: String,
    pub path: String,
    pub kind: String,
    pub full_path: String,
    pub parent_id: Option<String>,
    pub avatar_url: String,
    pub web_url: String,
}