Initial commit

This commit is contained in:
orhun 2021-07-19 22:16:13 +03:00
commit 2d3151292d
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90
4 changed files with 39 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

7
Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "oops"
version = "0.1.0"

28
Cargo.toml Normal file
View File

@ -0,0 +1,28 @@
[package]
name = "oops"
version = "0.1.0"
edition = "2018"
description = "Orhun's obscure pastebin server"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
[dependencies]
[profile.dev]
opt-level = 0
debug = true
panic = "abort"
[profile.test]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
debug = false
panic = "unwind"
lto = true
codegen-units = 1
[profile.bench]
opt-level = 3
debug = false

3
src/main.rs Normal file
View File

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