forked from spaceapi-community/spaceapi-rs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
43 lines (40 loc) · 1.07 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 = [
"spaceapi-dezentrale",
"spaceapi-dezentrale-client",
"spaceapi-dezentrale-server",
]
resolver = "2"
[workspace.package]
version = "0.10.0"
repository = "https://github.com/dezentrale/spaceapi-rs"
license = "MIT OR Apache-2.0"
readme = "README.md"
authors = [
"Alexander Böhm <[email protected]>",
]
keywords = ["spaceapi", "hackerspaces", "status", "api"]
categories = ["api-bindings"]
edition = "2021"
include = [
"**/*.rs",
"Cargo.toml",
"README.md",
"CHANGELOG.md",
"AUTHORS.md",
]
[workspace.dependencies]
clap = "4.1.6"
env_logger = "0.10.0"
log = "0.4.17"
rand = "0.8.5"
reqwest = { version = "0.11.14", features = ["json", "rustls-tls"], default-features = false }
rocket = { version = "0.5.0", features = ["json"] }
spaceapi-dezentrale = { path = "spaceapi-dezentrale" }
spaceapi-dezentrale-server = { path = "spaceapi-dezentrale-server" }
spaceapi = "0.9.0"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9.17"
tokio = { version = "1", features = ["macros"] }
[profile.release]
strip = true