🎉 Start refactoring PageTop for Sycamore
This commit is contained in:
parent
9f62955acb
commit
38ca8f1d1c
155 changed files with 2805 additions and 10960 deletions
125
Cargo.toml
125
Cargo.toml
|
|
@ -1,62 +1,85 @@
|
|||
[package]
|
||||
name = "pagetop"
|
||||
version = "0.0.56"
|
||||
edition = "2021"
|
||||
|
||||
description = "An opinionated web framework to build modular Server-Side Rendering web solutions."
|
||||
homepage = "https://pagetop.cillero.es"
|
||||
repository = "https://github.com/manuelcillero/pagetop"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
authors = [
|
||||
"Manuel Cillero <manuel@cillero.es>"
|
||||
]
|
||||
categories = [
|
||||
"web-programming", "gui", "development-tools", "asynchronous"
|
||||
]
|
||||
keywords = [
|
||||
"pagetop", "web", "framework", "frontend", "ssr"
|
||||
]
|
||||
exclude = [
|
||||
"examples/", "helpers/", "tests/"
|
||||
]
|
||||
rust-version = "1.80.0"
|
||||
|
||||
[workspace]
|
||||
members = ["helpers/*"]
|
||||
resolver = "2"
|
||||
members = [
|
||||
# Helpers
|
||||
"helpers/pagetop-build",
|
||||
"helpers/pagetop-macros",
|
||||
|
||||
[lib]
|
||||
name = "pagetop"
|
||||
# Packages
|
||||
"packages/pagetop",
|
||||
# "packages/pagetop-bootsier",
|
||||
# "packages/pagetop-macros",
|
||||
|
||||
[dependencies]
|
||||
chrono = "0.4.38"
|
||||
concat-string = "1.0.1"
|
||||
figlet-rs = "0.1.5"
|
||||
itoa = "1.0.11"
|
||||
nom = "7.1.3"
|
||||
paste = "1.0.15"
|
||||
substring = "1.4.5"
|
||||
terminal_size = "0.3.0"
|
||||
toml = "0.8.19"
|
||||
# App
|
||||
"packages/drust",
|
||||
|
||||
tracing = "0.1.40"
|
||||
tracing-appender = "0.2.3"
|
||||
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
|
||||
tracing-actix-web = "0.7.11"
|
||||
# Examples
|
||||
# "examples/app-basic",
|
||||
# "examples/hello-world",
|
||||
# "examples/hello-name",
|
||||
]
|
||||
|
||||
fluent-templates = "0.9.4"
|
||||
unic-langid = { version = "0.9.5", features = ["macros"] }
|
||||
[workspace.package]
|
||||
homepage = "https://pagetop.cillero.es"
|
||||
repository = "https://github.com/manuelcillero/pagetop"
|
||||
license = "MIT OR Apache-2.0"
|
||||
authors = ["Manuel Cillero <manuel@cillero.es>"]
|
||||
|
||||
actix-web = "4"
|
||||
actix-session = { version = "0.10.0", features = ["cookie-session"] }
|
||||
|
||||
actix-web-files = { package = "actix-files", version = "0.6.6" }
|
||||
actix-web-static-files = "4.0.1"
|
||||
[workspace.dependencies]
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
static-files = "0.2.4"
|
||||
|
||||
pagetop-build = { version = "0.0", path = "helpers/pagetop-build" }
|
||||
pagetop-macros = { version = "0.0", path = "helpers/pagetop-macros" }
|
||||
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
pagetop = { version = "0.0", path = "packages/pagetop" }
|
||||
|
||||
[build-dependencies]
|
||||
pagetop-build = { version = "0.0", path = "helpers/pagetop-build" }
|
||||
|
||||
|
||||
|
||||
actix-web = "4"
|
||||
actix-web-files = { package = "actix-files", version = "0.6" }
|
||||
actix-web-static-files = "4.0"
|
||||
actix-session = { version = "0.10", features = ["cookie-session"] }
|
||||
fluent-templates = "0.11"
|
||||
nom = "7.1"
|
||||
substring = "1.4"
|
||||
tracing = "0.1"
|
||||
tracing-appender = "0.2"
|
||||
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
|
||||
tracing-actix-web = "0.7"
|
||||
unic-langid = { version = "0.9", features = ["macros"] }
|
||||
|
||||
|
||||
#[dependencies]
|
||||
#chrono = "0.4.38"
|
||||
#concat-string = "1.0.1"
|
||||
#figlet-rs = "0.1.5"
|
||||
#itoa = "1.0.11"
|
||||
#nom = "7.1.3"
|
||||
#paste = "1.0.15"
|
||||
#substring = "1.4.5"
|
||||
#terminal_size = "0.4.0"
|
||||
#toml = "0.8.19"
|
||||
|
||||
#tracing = "0.1.40"
|
||||
#tracing-appender = "0.2.3"
|
||||
#tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
|
||||
#tracing-actix-web = "0.7.14"
|
||||
|
||||
#fluent-templates = "0.11.0"
|
||||
#unic-langid = { version = "0.9.5", features = ["macros"] }
|
||||
|
||||
#actix-web = "4"
|
||||
#actix-session = { version = "0.10.1", features = ["cookie-session"] }
|
||||
|
||||
#actix-web-files = { package = "actix-files", version = "0.6.6" }
|
||||
#actix-web-static-files = "4.0.1"
|
||||
#static-files = "0.2.4"
|
||||
|
||||
#pagetop-macros = { version = "0.0", path = "helpers/pagetop-macros" }
|
||||
|
||||
#serde = { version = "1.0", features = ["derive"] }
|
||||
|
||||
#[build-dependencies]
|
||||
#pagetop-build = { version = "0.0", path = "helpers/pagetop-build" }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue