Compare commits
4 Commits
fbe13f8d49
...
836fe1adcd
| Author | SHA1 | Date | |
|---|---|---|---|
|
836fe1adcd
|
|||
|
c5437ec7b3
|
|||
|
3fa0e6e4c9
|
|||
|
78f528ff77
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -2060,6 +2060,8 @@ dependencies = [
|
|||||||
"dioxus",
|
"dioxus",
|
||||||
"dotenvy",
|
"dotenvy",
|
||||||
"lucide-dioxus",
|
"lucide-dioxus",
|
||||||
|
"serde",
|
||||||
|
"thiserror 2.0.18",
|
||||||
"tracing",
|
"tracing",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ name = "libretunes"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Ethan Girouard"]
|
authors = ["Ethan Girouard"]
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
build = "src/build.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
diesel = { version = "2.3.10", optional = true, features = [ "postgres" ] }
|
diesel = { version = "2.3.10", optional = true, features = [ "postgres" ] }
|
||||||
@@ -10,6 +11,8 @@ diesel_migrations = { version = "2.3.2", optional = true, features = [ "postgres
|
|||||||
dioxus = { version = "0.7.9", features = ["router", "fullstack"] }
|
dioxus = { version = "0.7.9", features = ["router", "fullstack"] }
|
||||||
dotenvy = { version = "0.15.7", optional = true }
|
dotenvy = { version = "0.15.7", optional = true }
|
||||||
lucide-dioxus = "3.11.0"
|
lucide-dioxus = "3.11.0"
|
||||||
|
serde = { version = "1.0.228", features = ["derive"] }
|
||||||
|
thiserror = "2.0.18"
|
||||||
tracing = "0.1.44"
|
tracing = "0.1.44"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|||||||
3
src/build.rs
Normal file
3
src/build.rs
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
fn main() {
|
||||||
|
println!("cargo:rerun-if-changed=migrations");
|
||||||
|
}
|
||||||
@@ -5,6 +5,7 @@ pub mod components;
|
|||||||
pub mod models;
|
pub mod models;
|
||||||
pub mod pages;
|
pub mod pages;
|
||||||
pub mod schema;
|
pub mod schema;
|
||||||
|
pub mod util;
|
||||||
|
|
||||||
#[cfg(feature = "server")]
|
#[cfg(feature = "server")]
|
||||||
pub mod server;
|
pub mod server;
|
||||||
|
|||||||
1
src/util/mod.rs
Normal file
1
src/util/mod.rs
Normal file
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
Reference in New Issue
Block a user