-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathCargo.toml
34 lines (33 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
29
30
31
32
33
34
[package]
name = "percy"
version = "0.0.1"
authors = ["Chinedu Francis Nwafili <[email protected]>"]
description = "A modular toolkit for building interactive frontend browser apps with Rust + WebAssembly. Supports server side rendering."
keywords = ["virtual", "dom", "wasm", "css", "webassembly"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/chinedufn/percy"
[workspace]
members = [
"crates/html-macro",
"crates/html-macro-test",
"crates/html-validation",
"crates/percy-cli",
"crates/percy-css",
"crates/percy-dom",
"crates/percy-css-macro",
"crates/percy-preview",
"crates/percy-preview-app",
"crates/percy-preview-server",
"crates/percy-router",
"crates/percy-router-macro",
"crates/percy-router-macro-test",
"crates/virtual-node",
"examples/component-preview",
"examples/embed-non-percy-node",
"examples/isomorphic/app",
"examples/isomorphic/client",
"examples/isomorphic/server",
"examples/unit-testing-components",
"tests/test-css-rs",
"tests/test-css-rs-fixture",
]