shapes 0.1.0

Sample Library from PIAIC Batch3 IoT
Documentation
  • Coverage
  • 0%
    0 out of 4 items documented0 out of 1 items with examples
  • Size
  • Source code size: 13.67 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • bilal619

First Welcome from Islamabad

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

shapes = "0.1.0"

your cargo.toml file should look like this:

[package]
name = "example"
version = "0.1.0"
authors = ["bilal619 <m.bilal210@gmail.com>"]
edition = "2018

[dependencies]
shapes = "0.1.0"

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

use shapes;
fn main() {
    shapes::make_shape::circle::make_circle();
}

now `cargo run` for results