add umbrella crate
This commit is contained in:
parent
d171fc723b
commit
fe04530f84
17 changed files with 247 additions and 5 deletions
|
@ -4,13 +4,15 @@ version = "0.1.0"
|
|||
edition = "2024"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
default = ["client", "server"]
|
||||
client = ["dep:reqwest"]
|
||||
server = [
|
||||
"dep:axum",
|
||||
"dep:http-body-util",
|
||||
"dep:tower-http",
|
||||
"dep:serde_urlencoded",
|
||||
"eva/tokio",
|
||||
"tokio/net"
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
|
@ -30,4 +32,6 @@ http-body-util = { version = "0.1.3", optional = true }
|
|||
tower-http = { optional = true, version = "0.6.6", default-features = false, features = ["limit"] }
|
||||
serde_urlencoded = { version = "0.7.1", optional = true }
|
||||
|
||||
tokio = { workspace = true, optional = true }
|
||||
|
||||
reqwest = { optional = true, version = "0.12.23", default-features = false }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue