Initialized rust binary crate and added dependencies.

This commit is contained in:
Thelie 2021-04-23 00:50:23 +02:00
parent e5af9b8fd9
commit 0fef1aa892
3 changed files with 19 additions and 0 deletions

5
.gitignore vendored
View file

@ -11,3 +11,8 @@ Cargo.lock
# These are backup files generated by rustfmt # These are backup files generated by rustfmt
**/*.rs.bk **/*.rs.bk
# Added by cargo
/target

11
Cargo.toml Normal file
View file

@ -0,0 +1,11 @@
[package]
name = "Mention2Mail"
version = "0.1.0"
authors = ["Thelie <git.daniel@mowitz.rocks>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
irc = "0.15.0"
lettre = "0.9.5"

3
src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}