├── .gitignore ├── LICENSE ├── README.md ├── src └── main.rs ├── step1 ├── Cargo.lock ├── Cargo.toml └── src │ └── main.rs ├── step2 ├── Cargo.lock ├── Cargo.toml └── src │ └── main.rs ├── step3 ├── Cargo.lock ├── Cargo.toml └── src │ └── main.rs ├── step4 ├── Cargo.lock ├── Cargo.toml └── src │ └── main.rs └── step5 ├── Cargo.lock ├── Cargo.toml └── src └── main.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skade/mailbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skade/mailbox/HEAD/README.md -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skade/mailbox/HEAD/src/main.rs -------------------------------------------------------------------------------- /step1/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "mailbox" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /step1/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skade/mailbox/HEAD/step1/Cargo.toml -------------------------------------------------------------------------------- /step1/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /step2/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "mailbox" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /step2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skade/mailbox/HEAD/step2/Cargo.toml -------------------------------------------------------------------------------- /step2/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skade/mailbox/HEAD/step2/src/main.rs -------------------------------------------------------------------------------- /step3/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "mailbox" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /step3/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skade/mailbox/HEAD/step3/Cargo.toml -------------------------------------------------------------------------------- /step3/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skade/mailbox/HEAD/step3/src/main.rs -------------------------------------------------------------------------------- /step4/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "mailbox" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /step4/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skade/mailbox/HEAD/step4/Cargo.toml -------------------------------------------------------------------------------- /step4/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skade/mailbox/HEAD/step4/src/main.rs -------------------------------------------------------------------------------- /step5/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "mailbox" 3 | version = "0.1.4" 4 | 5 | -------------------------------------------------------------------------------- /step5/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skade/mailbox/HEAD/step5/Cargo.toml -------------------------------------------------------------------------------- /step5/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skade/mailbox/HEAD/step5/src/main.rs --------------------------------------------------------------------------------