21 lines
504 B
TOML
21 lines
504 B
TOML
[package]
|
|
name = "artist-website"
|
|
version = "1.0.0"
|
|
description = "Artist portfolio website built with Tauri + Vue"
|
|
authors = [""]
|
|
license = ""
|
|
repository = ""
|
|
edition = "2021"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1.5", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "1.5", features = [ "fs-read-file", "path-all", "shell-open"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
[features]
|
|
default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|