Project Configuration Files
This commit is contained in:
parent
c7d38dee76
commit
488774c57d
4 changed files with 1453 additions and 0 deletions
1431
Cargo.lock
generated
Normal file
1431
Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
15
Cargo.toml
Normal file
15
Cargo.toml
Normal file
|
@ -0,0 +1,15 @@
|
|||
[package]
|
||||
name = "navidrome-alternate-ui"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
sycamore = { version = "0.9.0-beta.2", features = ["suspense"] }
|
||||
reqwest = { version = "0.11.23", features = ["blocking", "json"] }
|
||||
md5 = "0.7.0"
|
||||
dotenv = "0.15.0"
|
||||
serde = { version = "1.0.196", features = ["derive"] }
|
||||
log = "0.4.20"
|
||||
console_log = "1.0.0"
|
4
Trunk.toml
Normal file
4
Trunk.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[serve]
|
||||
address = "::"
|
||||
port = 8080
|
||||
open = false
|
3
tailwind.config.js
Normal file
3
tailwind.config.js
Normal file
|
@ -0,0 +1,3 @@
|
|||
module.exports = {
|
||||
content: [ "./src/**/*.rs", "./index.html" ]
|
||||
};
|
Loading…
Reference in a new issue