diff --git a/examples/hackernews-axum/Cargo.toml b/examples/hackernews-axum/Cargo.toml index ae080a360e..a52c5180d6 100644 --- a/examples/hackernews-axum/Cargo.toml +++ b/examples/hackernews-axum/Cargo.toml @@ -12,12 +12,12 @@ console_log = "0.2" console_error_panic_hook = "0.1" futures = "0.3" cfg-if = "1" -leptos = { path = "../../../leptos/leptos", default-features = false, features = [ +leptos = { path = "../../leptos", default-features = false, features = [ "serde", ] } -leptos_axum = { path = "../../../leptos/integrations/axum", optional = true } -leptos_meta = { path = "../../../leptos/meta", default-features = false } -leptos_router = { path = "../../../leptos/router", default-features = false } +leptos_axum = { path = "../../integrations/axum", optional = true } +leptos_meta = { path = "../../meta", default-features = false } +leptos_router = { path = "../../router", default-features = false } log = "0.4" simple_logger = "2" serde = { version = "1", features = ["derive"] } diff --git a/examples/router/Cargo.toml b/examples/router/Cargo.toml index 74bc53184f..e46a747842 100644 --- a/examples/router/Cargo.toml +++ b/examples/router/Cargo.toml @@ -11,7 +11,7 @@ leptos_router = { path = "../../router", features=["csr"] } serde = { version = "1", features = ["derive"] } futures = "0.3" console_error_panic_hook = "0.1.7" -leptos_meta = { path = "../../../leptos/meta", default-features = false } +leptos_meta = { path = "../../meta", default-features = false } [dev-dependencies] wasm-bindgen-test = "0.3.0" diff --git a/examples/todo-app-sqlite-axum/Cargo.toml b/examples/todo-app-sqlite-axum/Cargo.toml index 3f09b98aed..5a86d5d4dd 100644 --- a/examples/todo-app-sqlite-axum/Cargo.toml +++ b/examples/todo-app-sqlite-axum/Cargo.toml @@ -12,12 +12,12 @@ console_log = "0.2.0" console_error_panic_hook = "0.1.7" futures = "0.3.25" cfg-if = "1.0.0" -leptos = { path = "../../../leptos/leptos", default-features = false, features = [ +leptos = { path = "../../leptos", default-features = false, features = [ "serde", ] } -leptos_axum = { path = "../../../leptos/integrations/axum", default-features = false, optional = true } -leptos_meta = { path = "../../../leptos/meta", default-features = false } -leptos_router = { path = "../../../leptos/router", default-features = false } +leptos_axum = { path = "../../integrations/axum", default-features = false, optional = true } +leptos_meta = { path = "../../meta", default-features = false } +leptos_router = { path = "../../router", default-features = false } log = "0.4.17" simple_logger = "4.0.0" serde = { version = "1.0.148", features = ["derive"] } diff --git a/examples/todo-app-sqlite/Cargo.toml b/examples/todo-app-sqlite/Cargo.toml index 82955b4dda..af3c9892d0 100644 --- a/examples/todo-app-sqlite/Cargo.toml +++ b/examples/todo-app-sqlite/Cargo.toml @@ -16,12 +16,12 @@ console_error_panic_hook = "0.1" serde = { version = "1", features = ["derive"] } futures = "0.3" cfg-if = "1" -leptos = { path = "../../../leptos/leptos", default-features = false, features = [ +leptos = { path = "../../leptos", default-features = false, features = [ "serde", ] } -leptos_actix = { path = "../../../leptos/integrations/actix", optional = true } -leptos_meta = { path = "../../../leptos/meta", default-features = false } -leptos_router = { path = "../../../leptos/router", default-features = false } +leptos_actix = { path = "../../integrations/actix", optional = true } +leptos_meta = { path = "../../meta", default-features = false } +leptos_router = { path = "../../router", default-features = false } log = "0.4" simple_logger = "2" gloo = { git = "https://github.com/rustwasm/gloo" }