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",
|
||||
"dotenvy",
|
||||
"lucide-dioxus",
|
||||
"serde",
|
||||
"thiserror 2.0.18",
|
||||
"tracing",
|
||||
]
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@ name = "libretunes"
|
||||
version = "0.1.0"
|
||||
authors = ["Ethan Girouard"]
|
||||
edition = "2024"
|
||||
build = "src/build.rs"
|
||||
|
||||
[dependencies]
|
||||
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"] }
|
||||
dotenvy = { version = "0.15.7", optional = true }
|
||||
lucide-dioxus = "3.11.0"
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
thiserror = "2.0.18"
|
||||
tracing = "0.1.44"
|
||||
|
||||
[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 pages;
|
||||
pub mod schema;
|
||||
pub mod util;
|
||||
|
||||
#[cfg(feature = "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