-
Notifications
You must be signed in to change notification settings - Fork 32
/
Cargo.toml
44 lines (40 loc) · 1.23 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
35
36
37
38
39
40
41
42
43
44
[package]
name = "kosmonaut"
version = "0.1.0"
authors = ["Tyler Wilcock <twilco.o@protonmail.com>"]
edition = "2018"
[dependencies]
cssparser = "0.27"
cli = { path = "components/cli" }
display_list = { path = "components/display_list" }
dom = { path = "components/dom" }
gfx = { path = "components/gfx" }
gl = { path = "components/gl" }
glutin = "0.26"
html5ever = "0.25.1"
image = "0.23"
isahc = "1.4.0"
kosmonaut_selectors = { path = "components/kosmonaut_selectors" }
layout = { path = "components/layout" }
primitives = { path = "components/primitives" }
style = { path = "components/style" }
url = "2.2"
[dev-dependencies]
insta = "1.7.1"
# This is a slightly modified fork of https://github.com/commure/datatest/pull/30 (at the time this comment was written).
datatest = { git = "https://github.com/twilco/datatest", branch = "downgrade-version-check" }
datatest-derive = { git = "https://github.com/twilco/datatest", branch = "downgrade-version-check" }
[features]
gl_debug = ["gl/debug"]
[workspace]
members = [
"components/cli",
"components/display_list",
"components/dom",
"components/gfx",
"components/gl",
"components/kosmonaut_selectors",
"components/layout",
"components/primitives",
"components/style"
]