-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (39 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
41 lines (39 loc) · 1.15 KB
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
[package]
name = "rust-api-kit"
version = "0.1.2"
edition = "2024"
authors = ["sterrlia <dev@sterrlia.com>"]
description = "A type-safe API definition toolkit for Rust — define your API once and share it across client and server, with compile-time guarantees."
repository = "https://github.com/sterrlia/rust-api-kit"
documentation = "https://docs.rs/rust-api-kit"
readme = "README.md"
keywords = [
"api",
"http",
"fullstack",
"compile-time",
"client-server"
]
categories = [
"web-programming",
"api-bindings",
"network-programming",
"asynchronous",
"development-tools"
]
license-file = "LICENSE"
rust-version = "1.85.1"
[dependencies]
reqwest = { version = "0.12.20", features = ["json"] }
serde = { version = "1.0.219", features = ["derive", "serde_derive"] }
serde_json = "1.0.140"
url = { version = "2.5.4", features = ["std", "serde"] }
async-trait = "0.1.88"
tracing = { version = "0.1.41", optional = true }
axum = { version = "0.8.3", optional = true }
anyhow = { version = "1.0.98", optional = true }
[features]
default = ["anyhow", "axum", "tracing"]
axum = ["dep:axum"]
anyhow = ["dep:anyhow"]
tracing = ["dep:tracing"]