[package] name = "belajar_rust_crate_lib" version = "0.1.0" edition = "2021" description = "Belajar Rust Crate (Library)" license = "Apache-2.0" authors = ["Dedy Styawan"] documentation = "https://github.com/jadahbakar/belajar-rust-crate-lib" [features] hello = [] time = [] greet = [] all = ["hello", "time", "greet"] default = ["hello"] [dependencies] chrono = "0.4.38"