Create Rust Project

This commit is contained in:
GuilhermeWerner
2021-07-04 10:15:23 -03:00
parent 57b358e3ec
commit 9a33f5082b
7 changed files with 35 additions and 0 deletions

21
Cargo.toml Normal file
View File

@ -0,0 +1,21 @@
[package]
name = "Http"
version = "0.0.1"
description = "TribuFu Http"
repository = "https://github.com/TribuFu/Http"
authors = ["TribuFu <contact@tribufu.com>"]
license = "MIT"
edition = "2018"
publish = false
[lib]
name="Http"
crate-type = ["rlib"]
path = "Source/Http.rs"
[[bin]]
name="HttpServer"
path = "Source/Main.rs"
doc = false
[dependencies]