-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (36 loc) · 1.17 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
workspace = { members = [
"wspr_cdk_server",
"python_wrapper",
"windows_container",
] }
[package]
name = "wspr_cdk"
version = "0.0.12"
edition = "2021"
authors = ["Irfan Ghat"]
description = "This crate provides an abstraction that allows you to do analysis on wspr's real time spot data."
homepage = "https://github.com/lexara-prime-ai/wspr_cdk"
repository = "https://github.com/lexara-prime-ai/wspr_cdk"
readme = "README.md"
keywords = ["radio", "web", "http", "api"]
categories = ["web-programming::http-server", "science::geo"]
license = "BSD-1-Clause"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.86"
chrono = { version = "0.4.38", features = ["serde"] }
dotenv = "0.15.0"
reqwest = { version = "0.12.7", features = ["json"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
tokio = { version = "1.40.0", features = ["full"] }
# Strip symbols from the binary.
# [profile.release]
# strip = true
# Optimize for size.
# [profile.release]
# opt-level = "z"
# Enable Link Time Optimization.
# Instructs the linker to optimize at the link stage.
[profile.release]
lto = true