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

[package]
name = "typed-urls"
version = "0.1.0"
authors = ["Thomas Letan <lthms@soap.coffee>"]
description = "Type-safe URLs for Rust web applications"
repository = "https://labs.soap.coffee/crates/typed-urls.git"
edition = "2018"
license = "MPL-2.0"

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

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