-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
40 lines (36 loc) · 911 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
34
35
36
37
38
39
40
[package]
name = "elvis"
version = "0.3.1"
authors = ["clearloop <[email protected]>"]
edition = "2018"
description = "Calling Elvis, is anybody home?"
repository = "https://github.com/clearloop/elvis"
license = "MIT"
documentation = "https://docs.rs/elvis"
homepage = "https://github.com/clearloop/elvis"
include = ["src/**/*", "Cargo.toml", "./README.md"]
keywords = ["js", "wasm", "spa", "web"]
readme = './README.md'
[workspace]
members = [
"web",
"backend",
"derive",
"epm",
"core",
"support",
"examples/hello-world",
"examples/click",
"examples/router",
"examples/todo-mvc",
"examples/website",
]
[dependencies]
elvis-web = { path = "web", version = "^0.1", optional = true }
elvis-core = { path = "core", version = "^0.1" }
elvis-derive = { path = "derive", version = "^0.1" }
[features]
web = [ "elvis-web", "elvis-core/web" ]
default = [ "web" ]
[profile.release]
lto = true