-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (29 loc) · 973 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "oxidetracks"
description = "An opinionated reimplementation of owntracks/recorder"
version = "0.1.0"
edition = "2021"
authors = ["networkException <[email protected]>"]
license = "BSD-2-Clause"
repository = "https://github.com/networkException/oxidetracks"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "macros"
path = "macros/src/lib.rs"
proc-macro = true
[dependencies]
anyhow = "1.0.72"
axum = { version = "0.6.18", features = ["macros"] }
chrono = { version = "0.4.26", features = ["serde"] }
clap = { version = "4.3.12", features = ["derive", "env"] }
git-version = "0.3.5"
log = "0.4.19"
serde = { version = "1.0.171", features = ["derive"] }
serde_json = "1.0.103"
serde_repr = "0.1.14"
tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread"] }
quote = "1.0.31"
syn = "2.0.26"
env_logger = "0.10.0"
tower = "0.4.13"
tower-http = { version = "0.4.1", features = ["cors"] }