Fix authors field

This commit is contained in:
Greg Johnston 2022-10-07 06:50:21 -04:00
parent 6582036c9d
commit 97d7afec2e
7 changed files with 25 additions and 0 deletions

View file

@ -2,6 +2,7 @@
name = "leptos"
version = "0.0.1"
edition = "2021"
description = "Leptos is a full-stack, isomorphic Rust web framework leveraging fine-grained reactivity to build declarative user interfaces."
[dependencies]
leptos_core = { path = "../leptos_core", version = "0.0.1" }

View file

@ -2,6 +2,10 @@
name = "leptos_core"
version = "0.0.1"
edition = "2021"
authors = ["Greg Johnston"]
license = "MIT"
repository = "https://github.com/gbj/leptos"
description = "Core functionality for the Leptos web framework."
[dependencies]
leptos_dom = { path = "../leptos_dom" }

View file

@ -2,6 +2,10 @@
name = "leptos_dom"
version = "0.0.1"
edition = "2021"
authors = ["Greg Johnston"]
license = "MIT"
repository = "https://github.com/gbj/leptos"
description = "DOM operations for the Leptos web framework."
[dependencies]
js-sys = "0.3"

View file

@ -2,6 +2,10 @@
name = "leptos_macro"
version = "0.0.1"
edition = "2021"
authors = ["Greg Johnston"]
license = "MIT"
repository = "https://github.com/gbj/leptos"
description = "view macro for the Leptos web framework."
[lib]
proc-macro = true

View file

@ -2,6 +2,10 @@
name = "leptos_reactive"
version = "0.0.1"
edition = "2021"
authors = ["Greg Johnston"]
license = "MIT"
repository = "https://github.com/gbj/leptos"
description = "Reactive system for the Leptos web framework."
[dependencies]
log = "0.4"

View file

@ -2,6 +2,10 @@
name = "leptos_meta"
version = "0.0.1"
edition = "2021"
authors = ["Greg Johnston"]
license = "MIT"
repository = "https://github.com/gbj/leptos"
description = "Tools to set HTML metadata in the Leptos web framework."
[dependencies]
leptos = { path = "../leptos" }

View file

@ -2,6 +2,10 @@
name = "leptos_router"
version = "0.0.1"
edition = "2021"
authors = ["Greg Johnston"]
license = "MIT"
repository = "https://github.com/gbj/leptos"
description = "Router for the Leptos web framework."
[dependencies]
leptos_core = { path = "../leptos_core" }