-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (26 loc) · 1.02 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
[workspace]
members = [
"axum-routes",
"axum-routes-macros",
]
resolver = "2"
[workspace.package]
version = "0.2.2"
edition = "2021"
authors = ["Thomas Meson <[email protected]>"]
description = "Create an axum Router from an enum and resolve routes"
homepage = "https://github.com/zllak/axum-routes"
repository = "https://github.com/zllak/axum-routes"
license = "MIT"
readme = "README.md"
[workspace.dependencies]
## Internal
axum-routes-macros = { path = "axum-routes-macros", version = "0.2.2" }
## External
axum = { version = "0.8", default-features = false }
monch = { version = "0.5", default-features = false }
proc-macro-crate = { version = "3.2", default-features = false }
proc-macro2 = { version = "1.0", default-features = false }
quote = { version = "1.0", default-features = false, features = ["proc-macro"] }
syn = { version = "2.0", default-features = false, features = ["full", "parsing", "printing", "proc-macro", "extra-traits"] } # remove extra-traits, only for Debug
thiserror = { version = "2.0", default-features = false }