-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
43 lines (38 loc) · 1.78 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
[package]
name = "cinnog"
version = "0.4.0-dev"
authors = ["Niklas Eicker <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Data layer and helper methods for static site generation with Leptos"
repository = "https://github.com/NiklasEi/cinnog"
homepage = "https://github.com/NiklasEi/cinnog"
documentation = "https://docs.rs/cinnog"
keywords = ["ssg", "leptos", "ecs"]
categories = ["web-programming"]
readme = "README.md"
[dependencies]
leptos = { git = "https://github.com/leptos-rs/leptos" }
leptos_axum = { git = "https://github.com/leptos-rs/leptos", optional = true }
leptos_router = { git = "https://github.com/leptos-rs/leptos", optional = true }
#leptos = { path = "../leptos/leptos" }
#leptos_axum = { path = "../leptos/integrations/axum", optional = true }
#leptos_router = { path = "../leptos/router", optional = true }
bevy_ecs = { version = "0.14" }
bevy_app = { version = "0.14" }
#bevy_ecs = { path = "../bevy/crates/bevy_ecs" }
#bevy_app = { path = "../bevy/crates/bevy_app" }
axum = { version = "0.7", optional = true }
tokio = { version = "1.33.0", features = ["full"], optional = true }
tower = { version = "0.4.13", features = ["full"], optional = true }
tower-http = { version = "0.5", features = ["full"], optional = true }
tokio-util = {version = "0.7", features = ["rt"], optional = true }
serde = { version = "1", features = ["derive"], optional = true }
ron = { version = "0.8.1", optional = true }
gray_matter = { version = "0.2.6", optional = true }
pulldown-cmark = { version = "0.10.2", optional = true }
[features]
development = []
generator = ["dep:axum", "dep:tokio", "dep:tower", "dep:tower-http", "dep:leptos_axum", "dep:leptos_router", "dep:tokio-util"]
ron = ["dep:serde", "dep:ron"]
markdown = ["dep:serde", "dep:gray_matter", "dep:pulldown-cmark"]