3次发布

0.1.3 2020年11月11日
0.1.2 2020年10月27日
0.1.1 2020年10月26日
0.1.0 2020年10月26日

#250 in 数据库实现

Download history • Rust 包仓库 15221/week @ 2024-03-31 • Rust 包仓库 14716/week @ 2024-04-07 • Rust 包仓库 15411/week @ 2024-04-14 • Rust 包仓库 15804/week @ 2024-04-21 • Rust 包仓库 14884/week @ 2024-04-28 • Rust 包仓库 14507/week @ 2024-05-05 • Rust 包仓库 13680/week @ 2024-05-12 • Rust 包仓库 14726/week @ 2024-05-19 • Rust 包仓库 14531/week @ 2024-05-26 • Rust 包仓库 14767/week @ 2024-06-02 • Rust 包仓库 15775/week @ 2024-06-09 • Rust 包仓库 14955/week @ 2024-06-16 • Rust 包仓库 15018/week @ 2024-06-23 • Rust 包仓库 14871/week @ 2024-06-30 • Rust 包仓库 14739/week @ 2024-07-07 • Rust 包仓库 13775/week @ 2024-07-14 • Rust 包仓库

60,602 每月下载量

MIT/Apache

28KB
691

gsgdt

Generic Stringly typed Graph DataType

fn main() {
        let label1: String = "bb0__0_3".into();
        let label2: String = "bb0__1_3".into();
        let style: NodeStyle = Default::default();

        let nodes = vec![
            Node::new(
                vec!["_1 = const 1_i32".into(), "_2 = const 2_i32".into()],
                label1.clone(),
                "0".into(),
                style.clone(),
            ),
            Node::new(
                vec!["return".into()],
                label2.clone(),
                "1".into(),
                style.clone(),
            ),
        ];

        let g = Graph::new(
            "Mir_0_3".into(),
            GraphKind::Digraph,
            nodes,
            vec![Edge::new(label1, label2, "return".into())],
        );
}

依赖关系

~0.4–1MB
~22K SLoC