mirror of
https://github.com/guilhermewerner/http
synced 2025-06-15 11:14:19 +00:00
Create Rust Project
This commit is contained in:
2
.cargo/config.toml
Normal file
2
.cargo/config.toml
Normal file
@ -0,0 +1,2 @@
|
||||
[build]
|
||||
target-dir = "Binaries"
|
1
.clippy.toml
Normal file
1
.clippy.toml
Normal file
@ -0,0 +1 @@
|
||||
needless_return = "allow"
|
21
Cargo.toml
Normal file
21
Cargo.toml
Normal 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]
|
3
Source/Http.rs
Normal file
3
Source/Http.rs
Normal file
@ -0,0 +1,3 @@
|
||||
// Copyright (c) TribuFu. All Rights Reserved.
|
||||
|
||||
#![allow(non_snake_case)]
|
5
Source/Main.rs
Normal file
5
Source/Main.rs
Normal file
@ -0,0 +1,5 @@
|
||||
// Copyright (c) TribuFu. All Rights Reserved.
|
||||
|
||||
#![allow(non_snake_case)]
|
||||
|
||||
fn main() {}
|
3
build.rs
Normal file
3
build.rs
Normal file
@ -0,0 +1,3 @@
|
||||
// Copyright (c) TribuFu. All Rights Reserved.
|
||||
|
||||
fn main() {}
|
0
rustfmt.toml
Normal file
0
rustfmt.toml
Normal file
Reference in New Issue
Block a user