Initial commit
This commit is contained in:
24
backend/Cargo.toml
Normal file
24
backend/Cargo.toml
Normal file
@@ -0,0 +1,24 @@
|
||||
[package]
|
||||
name = "above_me"
|
||||
version = "0.1.4"
|
||||
edition = "2024"
|
||||
authors = ["Laika Schmidt <laika.schmidt@magenta.de>"]
|
||||
description = "This project contains the backend for above_me, a service that lets you see what aircraft are currently flying above you."
|
||||
readme = "../README.md"
|
||||
license = "MIT"
|
||||
keywords = ["ogn", "openglidernet", "open-glider-net", "aircraft", "glider"]
|
||||
exclude = ["Dockerfile", "target/"]
|
||||
|
||||
[dependencies]
|
||||
axum = "0.8.7"
|
||||
config = "0.15.19"
|
||||
regex = { version = "1.12.2", features = ["std"] }
|
||||
reqwest = "0.12"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
log = "0.4"
|
||||
env_logger = "0.11.8"
|
||||
|
||||
[profile.release]
|
||||
strip = true
|
||||
Reference in New Issue
Block a user