init commit

This commit is contained in:
MeexReay 2025-04-14 01:55:25 +03:00
commit fec8da1915
5 changed files with 28 additions and 0 deletions

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "sRAC"
version = "0.1.0"
edition = "2024"
[dependencies]

13
LICENSE Normal file
View File

@ -0,0 +1,13 @@
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.

2
README.md Normal file
View File

@ -0,0 +1,2 @@
# sRAC
server for RAC

4
config.yml Normal file
View File

@ -0,0 +1,4 @@
host: 127.0.0.1:42666
threadpool: 10
timeout: 5 # in seconds

3
src/main.rs Normal file
View File

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