cargo add mail
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,4 +1,5 @@
|
|||||||
Todos.db
|
Todos.db
|
||||||
target/
|
target/
|
||||||
|
site/
|
||||||
style/output.css
|
style/output.css
|
||||||
.env
|
.env
|
||||||
|
|||||||
4
Cargo.lock
generated
4
Cargo.lock
generated
@@ -1320,9 +1320,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ipnet"
|
name = "ipnet"
|
||||||
version = "2.10.0"
|
version = "2.10.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "187674a687eed5fe42285b40c6291f9a01517d415fad1c3cbc6a9f778af7fcd4"
|
checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "itertools"
|
name = "itertools"
|
||||||
|
|||||||
@@ -119,7 +119,7 @@ lib-features = ["hydrate"]
|
|||||||
# Optional. Defaults to false.
|
# Optional. Defaults to false.
|
||||||
lib-default-features = false
|
lib-default-features = false
|
||||||
|
|
||||||
#bin-target-triple = "aarch64-unknown-linux-gnu"
|
bin-target-triple = "aarch64-unknown-linux-gnu"
|
||||||
|
|
||||||
tailwind-input-file = "input.css"
|
tailwind-input-file = "input.css"
|
||||||
tailwind-config-file = "tailwind.config.js"
|
tailwind-config-file = "tailwind.config.js"
|
||||||
|
|||||||
@@ -7,3 +7,5 @@ CREATE TABLE IF NOT EXISTS donnees (
|
|||||||
date_donnee datetime NOT NULL,
|
date_donnee datetime NOT NULL,
|
||||||
PRIMARY KEY (id)
|
PRIMARY KEY (id)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||||
|
|
||||||
|
CREATE INDEX grafana_index ON donnees(date_donnee, capteur, type);
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#[cfg(feature = "ssr")]
|
#[cfg(feature = "ssr")]
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
async fn main() {
|
async fn main() {
|
||||||
rust_leptos::setup::init_app(None).await;
|
rust_leptos::setup::init_app(Some("Cargo.toml")).await;
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(feature = "ssr"))]
|
#[cfg(not(feature = "ssr"))]
|
||||||
|
|||||||
Reference in New Issue
Block a user