rustack 0.1.0

A stack implementation in Rust.
Documentation
**Rustack**

Rustack is a simple stack implementation in Rust.

**Installation**

Add this to your Cargo.toml:

```
[dependencies]
rustack = "0.1"
```

**Usage**

Here's a simple example of how to use rustack:

```
use rustack::Stack;

fn main() {
    let mut stack = Stack::new();
    stack.push(42);
    println!("{:?}", stack.pop()); // Some(42)
}
```

**Contributing**

Feel free to open issues or submit pull requests if you have any improvements or suggestions.