aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 1ea667ae6098b95754de95bbc042c074e3bfd1ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[workspace]
members = ['typed-urls-derive']

[package]
name = "typed-urls"
version = "0.1.0"
authors = ["Thomas Letan <lthms@soap.coffee>"]
edition = "2018"
license = "MPL-2.0"

[dependencies]
serde = "1.0"
serde_json = "1.0"
typed-urls-derive = { path = "typed-urls-derive/" }
tera = { version = "1.5", optional = true }
actix-web = { version = "3.0", optional = true }

[features]
default = []
tera-templates = ["tera"]
actix-routes = ["actix-web"]