#locked #cbsk #version #cargo #traits #macro #callback

cbsk_base

cbsk_base is a locked version cargo crates

17 releases (stable)

new 2.0.6 Nov 15, 2024
2.0.0 Aug 21, 2024
1.3.11 Aug 19, 2024
1.3.10 Jul 26, 2024
0.1.4 Dec 27, 2023

#811 in Data structures

Download history 114/week @ 2024-07-29 19/week @ 2024-08-05 20/week @ 2024-08-12 381/week @ 2024-08-19 91/week @ 2024-08-26 212/week @ 2024-09-02 179/week @ 2024-09-09 37/week @ 2024-09-16 92/week @ 2024-09-23 22/week @ 2024-09-30 21/week @ 2024-10-07 47/week @ 2024-10-14 9/week @ 2024-10-21 9/week @ 2024-10-28 72/week @ 2024-11-04 150/week @ 2024-11-11

250 downloads per month
Used in 14 crates

MIT/Apache

22KB
353 lines

cbsk_base is a locked version cargo crates
you can use cbsk_base lock commonly used cargo crates versions
cbsk_base also supports some custom trait, like ToJson,FromJson and some macro

now locked version

name git version
tokio github 1.41.1
anyhow github 1.0.93
once_cell github 1.20.2
serde github 1.0.215
serde_json github 1.0.132
log github 0.4.22
async-trait github 0.1.83
async-recursion github 1.1.1
parking_lot github 0.12.3
fastdate github 0.3.34

serde example

use serde_derive_json,
the struct impl Serialize, will auto impl ToJson
the struct impl Deserialize, will auto impl FromJson

Cargo.toml file :

cbsk_base = { version = "2.0.6", features = ["serde_derive_json"] }

main.rs file :

use cbsk_base::json::from_json::FromJson;
use cbsk_base::json::to_json::ToJson;
use cbsk_base::serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Default, Debug)]
#[serde(crate = "cbsk_base::serde")]
struct A {
    data: String,
}

fn main() {
    let a = A::default();
    let json = a.to_json();
    println!("a is {json:?}");// a is Ok(Object {"data": String("")})

    let a = A::from_json(json.unwrap());
    println!("a is {a:?}");// a is Ok(A { data: "" })
}

option macro example

Cargo.toml file :

cbsk_base = { version = "2.0.6", features = ["macro", "anyhow"] }

main.rs file :

use cbsk_base::anyhow;

fn main() {
    let a = try_get_option();
    println!("a is {a:?}");// a is Ok("hello world")
    exec_option();
}

fn try_get_option() -> anyhow::Result<String> {
    let a = Some("hello world".to_string());
    // match Option if is Some,
    // will be return value if is Nome,
    // will be return custom value and exit method
    Ok(cbsk_base::match_some_return!(a,Err(anyhow::anyhow!("a is none"))))
}

fn exec_option() {
    let a = Some("hello world".to_string());
    // match Option if is Some,
    // will be return value if is Nome,
    // will be return custom value
    let a = cbsk_base::match_some_exec!(a,{
        // do something, you can exit method, or break String
        println!("a is None");// will not output, because a not None
        return;
    });
    println!("a is {a}");// a is hello world
}

root_path example

Cargo.toml file:

cbsk_base = { version = "2.0.6", features = ["root_path"] }

main.rs file:

fn main() {
    // print the path where the program is located
    let root_path = cbsk_base::root_path();
    println!("root path is {root_path}");
}

Dependencies

~0–8MB
~66K SLoC