-
-
Notifications
You must be signed in to change notification settings - Fork 225
/
Cargo.toml
33 lines (29 loc) · 926 Bytes
/
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
29
30
31
32
33
[package]
authors = ["Sascha Grunert <[email protected]>"]
categories = ["web-programming"]
description = "A web application completely written in Rust"
documentation = "https://docs.rs/webapp"
homepage = "https://github.com/saschagrunert/webapp.rs"
keywords = ["web", "app", "webapp", "wasm", "webassembly"]
license = "MIT"
name = "webapp"
readme = "README.md"
repository = "https://github.com/saschagrunert/webapp.rs"
version = "1.0.0"
edition = "2018"
[badges]
circle-ci = { repository = "saschagrunert/webapp.rs", branch = "master" }
codecov = { repository = "saschagrunert/webapp.rs", branch = "master", service = "github" }
maintenance = { status = "actively-developed" }
[dependencies]
diesel = { version = "1.4.8", optional = true }
anyhow = "1.0.51"
serde = { version = "1.0.147", features = ["derive"] }
toml = "0.5.8"
[features]
backend = ["diesel"]
[workspace]
members = [
"backend",
"frontend",
]