From 44974fcf69b0c2c5c8cb67b061c5218220aaeae3 Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Thu, 26 Jan 2023 19:52:47 -0500 Subject: [PATCH] Replace `site-address` with `site-addr` in `cargo-leptos` example `Cargo.toml` files --- examples/counter_isomorphic/Cargo.toml | 2 +- examples/hackernews/Cargo.toml | 2 +- examples/hackernews_axum/Cargo.toml | 2 +- examples/tailwind/Cargo.toml | 2 +- examples/todo_app_sqlite/Cargo.toml | 2 +- examples/todo_app_sqlite_axum/Cargo.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/counter_isomorphic/Cargo.toml b/examples/counter_isomorphic/Cargo.toml index 1e3d6b2..6ce087f 100644 --- a/examples/counter_isomorphic/Cargo.toml +++ b/examples/counter_isomorphic/Cargo.toml @@ -57,7 +57,7 @@ site-pkg-dir = "pkg" # [Optional] Files in the asset-dir will be copied to the site-root directory assets-dir = "public" # The IP and port (ex: 127.0.0.1:3000) where the server serves the content. Use it in your server setup. -site-address = "127.0.0.1:3000" +site-addr = "127.0.0.1:3000" # The port to use for automatic reload monitoring reload-port = 3001 # [Optional] Command to use when running end2end tests. It will run in the end2end dir. diff --git a/examples/hackernews/Cargo.toml b/examples/hackernews/Cargo.toml index c343120..d0e1444 100644 --- a/examples/hackernews/Cargo.toml +++ b/examples/hackernews/Cargo.toml @@ -58,7 +58,7 @@ style-file = "./style.css" # [Optional] Files in the asset-dir will be copied to the site-root directory assets-dir = "public" # The IP and port (ex: 127.0.0.1:3000) where the server serves the content. Use it in your server setup. -site-address = "127.0.0.1:3000" +site-addr = "127.0.0.1:3000" # The port to use for automatic reload monitoring reload-port = 3001 # [Optional] Command to use when running end2end tests. It will run in the end2end dir. diff --git a/examples/hackernews_axum/Cargo.toml b/examples/hackernews_axum/Cargo.toml index dbebe03..7e1840e 100644 --- a/examples/hackernews_axum/Cargo.toml +++ b/examples/hackernews_axum/Cargo.toml @@ -66,7 +66,7 @@ style-file = "./style.css" # [Optional] Files in the asset-dir will be copied to the site-root directory assets-dir = "public" # The IP and port (ex: 127.0.0.1:3000) where the server serves the content. Use it in your server setup. -site-address = "127.0.0.1:3000" +site-addr = "127.0.0.1:3000" # The port to use for automatic reload monitoring reload-port = 3001 # [Optional] Command to use when running end2end tests. It will run in the end2end dir. diff --git a/examples/tailwind/Cargo.toml b/examples/tailwind/Cargo.toml index faa7313..5842c60 100644 --- a/examples/tailwind/Cargo.toml +++ b/examples/tailwind/Cargo.toml @@ -91,7 +91,7 @@ style-file = "style/output.css" # [Optional] Files in the asset-dir will be copied to the site-root directory assets-dir = "public" # The IP and port (ex: 127.0.0.1:3000) where the server serves the content. Use it in your server setup. -site-address = "127.0.0.1:3000" +site-addr = "127.0.0.1:3000" # The port to use for automatic reload monitoring reload-port = 3001 # [Optional] Command to use when running end2end tests. It will run in the end2end dir. diff --git a/examples/todo_app_sqlite/Cargo.toml b/examples/todo_app_sqlite/Cargo.toml index 160dd9e..7ecf5b9 100644 --- a/examples/todo_app_sqlite/Cargo.toml +++ b/examples/todo_app_sqlite/Cargo.toml @@ -60,7 +60,7 @@ style-file = "./style.css" # [Optional] Files in the asset-dir will be copied to the site-root directory assets-dir = "public" # The IP and port (ex: 127.0.0.1:3000) where the server serves the content. Use it in your server setup. -site-address = "127.0.0.1:3000" +site-addr = "127.0.0.1:3000" # The port to use for automatic reload monitoring reload-port = 3001 # [Optional] Command to use when running end2end tests. It will run in the end2end dir. diff --git a/examples/todo_app_sqlite_axum/Cargo.toml b/examples/todo_app_sqlite_axum/Cargo.toml index df11980..0b3f564 100644 --- a/examples/todo_app_sqlite_axum/Cargo.toml +++ b/examples/todo_app_sqlite_axum/Cargo.toml @@ -65,7 +65,7 @@ style-file = "./style.css" # [Optional] Files in the asset-dir will be copied to the site-root directory assets-dir = "public" # The IP and port (ex: 127.0.0.1:3000) where the server serves the content. Use it in your server setup. -site-address = "127.0.0.1:3000" +site-addr = "127.0.0.1:3000" # The port to use for automatic reload monitoring reload-port = 3001 # [Optional] Command to use when running end2end tests. It will run in the end2end dir.