firstwelcome 0.1.1

First Welcome Library
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 13.56 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.04 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • imran82ali/firstwelcome
    1 3 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • imran82ali

First Welcome

this is a demo rust library published on crates.io

to use this library you have to add following line in dependency section of cargo.toml

firstwelcome = "0.1.1"

your cargo.toml file should look like this:

[package]
name = "hello_world"
version = "0.1.0"
authors = ["imran82ali <code.imranali@gmail.com>"]
edition = "2018"

[dependencies]
firstwelcome = "0.1.1"

In src/main.rs you can use like this:

use firstwelcome;
fn main() {
    println!("Hello, world!");
    firstwelcome::hello();
}

following will also work:

use firstwelcome::hello;
fn main() {
    println!("Hello, world!");
    hello();
    }

now cargo run for results