init: basic foundation

This commit is contained in:
Xory 2025-11-12 21:06:45 +02:00
commit df22b0bd5e
10 changed files with 231 additions and 0 deletions

24
Cargo.toml Normal file
View file

@ -0,0 +1,24 @@
[package]
name = "skylink"
version = "1.0.0"
edition = "2024"
build = "build.rs"
[dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time", "io-std"] }
tokio-tungstenite = "0.28"
reqwest = "0.12"
serde = "1.0"
serde_json = "1.0"
windows = { version = "0.57", features = [ # note to future self: DO NOT UPGRADE OR THE BUILD WILL BREAK
"Win32_Foundation",
"Win32_System_Com",
"Win32_System_Com_Marshal",
"Win32_System_Threading"
]}
anyhow = "1.0.100"
futures-util = "0.3.31"
[build-dependencies]
dotenv = "0.15.0"
winresource = "0.1"