Project Configuration Files

This commit is contained in:
Neshura 2024-02-17 02:12:35 +01:00
parent c7d38dee76
commit 488774c57d
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
4 changed files with 1453 additions and 0 deletions

1431
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

15
Cargo.toml Normal file
View 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
View file

@ -0,0 +1,4 @@
[serve]
address = "::"
port = 8080
open = false

3
tailwind.config.js Normal file
View file

@ -0,0 +1,3 @@
module.exports = {
content: [ "./src/**/*.rs", "./index.html" ]
};