kellnr-db 6.2.0

Kellnr is a self-hosted registry for Rust crates with support for rustdocs and crates.io caching.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};

#[derive(Default, Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct CrateMeta {
    pub name: String,
    #[serde(skip_serializing, skip_deserializing)]
    pub id: i64,
    pub version: String,
    pub created: String,
    pub downloads: i64,
    #[serde(skip_serializing, skip_deserializing)]
    pub crate_fk: i64,
}