mirror of
https://git.alemi.dev/mumble-stats-api.git
synced 2024-11-22 07:54:48 +01:00
chore: initial commit
This commit is contained in:
commit
acbead360a
4 changed files with 57 additions and 0 deletions
17
.editorconfig
Normal file
17
.editorconfig
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# Default to Unix-style newlines with a newline ending every file
|
||||||
|
[*]
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
||||||
|
charset = utf-8
|
||||||
|
indent_style = tab
|
||||||
|
indent_size = 4
|
||||||
|
|
||||||
|
[*.rs]
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
[*.js]
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
[*.{yml,yaml}]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/target
|
1
.rustfmt.toml
Normal file
1
.rustfmt.toml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
hard_tabs = true
|
38
Cargo.toml
Normal file
38
Cargo.toml
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
[package]
|
||||||
|
name = "mumble-stats-api"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
authors = [ "alemi <me@alemi.dev>" ]
|
||||||
|
readme = "README.md"
|
||||||
|
description = "check mumble server stats using http requests"
|
||||||
|
#keywords = []
|
||||||
|
#documentation = ""
|
||||||
|
#repository = "https://git.alemi.dev/{{project-name}}"
|
||||||
|
#license = "LICENSE"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
byteorder = "1.5.0"
|
||||||
|
chrono = "0.4.34"
|
||||||
|
clap = { version = "4.5.0", features = ["derive"] }
|
||||||
|
tokio = { version = "1.36.0", features = ["full"] }
|
||||||
|
|
||||||
|
[dev-dependencies]
|
||||||
|
|
||||||
|
[features]
|
||||||
|
default = []
|
||||||
|
|
||||||
|
[lints.rust]
|
||||||
|
unsafe_code = "forbid"
|
||||||
|
|
||||||
|
[lints.clippy]
|
||||||
|
pedantic = "warn" # extra lints, maybe obnoxious, just warn
|
||||||
|
nursery = "warn" # experimental lints, may include false positives, just warn
|
||||||
|
unwrap_used = "warn" # warn for every unwrap used
|
||||||
|
#cargo = "warn" # warn about cargo manifest lints, this is annoying at the beginning
|
||||||
|
|
||||||
|
[profile.release] # make small binaries! will take quite longer, from https://github.com/johnthagen/min-sized-rust
|
||||||
|
opt-level = 'z' # optimize for size
|
||||||
|
lto = true # enable Link Time Optimisation: don't link unused stuff
|
||||||
|
codegen-units = 1 # reducing codegen units slows it down but allows for better optimization
|
||||||
|
panic = 'abort' # abort on panic: don't include code to show what went wrong in release
|
||||||
|
strip = "symbols" # strip symbols from binary: have fun debugging on prod! :)
|
Loading…
Reference in a new issue