Init commit
This commit is contained in:
commit
eb5d7425a5
3 changed files with 21 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/target
|
14
Cargo.toml
Normal file
14
Cargo.toml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
[package]
|
||||||
|
name = "contact-form"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = ["Mo Bitar <mo8it@proton.me>"]
|
||||||
|
edition = "2021"
|
||||||
|
readme = "README.adoc"
|
||||||
|
license-file = "LICENSE.txt"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
captcha = "0.0.9"
|
||||||
|
lettre = "0.10"
|
||||||
|
rocket = "0.5.0-rc.2"
|
||||||
|
rocket_dyn_templates = { version = "0.1.0-rc.2", features = ["tera"] }
|
||||||
|
serde = { version = "1.0", features = ["derive"] }
|
6
Rocket.toml
Normal file
6
Rocket.toml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
[default]
|
||||||
|
template_dir = "templates"
|
||||||
|
|
||||||
|
[release]
|
||||||
|
address = "0.0.0.0"
|
||||||
|
port = 80
|
Loading…
Reference in a new issue