You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
767 B
27 lines
767 B
[package] |
|
name = "opentapes" |
|
version = "0.1.0" |
|
description = "A convergent/adaptive app for streaming Hip-Hop mixtapes." |
|
authors = ["Xavier Saliniere <xavier.saliniere@pm.me>"] |
|
license = "GPL-3.0-only" |
|
readme = "../README.md" |
|
repository = "https://codeberg.org/xaviers/Opentapes" |
|
default-run = "opentapes" |
|
edition = "2018" |
|
build = "build.rs" |
|
publish = false |
|
|
|
[build-dependencies] |
|
tauri-build = { version = "1.0.0-beta.4" } |
|
tauri-cli = "1.0.0-beta.7" |
|
|
|
[dependencies] |
|
serde_json = "1.0" |
|
serde = { version = "1.0", features = ["derive"] } |
|
tauri = { version = "1.0.0-beta.8", features = ["api-all"] } |
|
reqwest = { version = "0.11", features = ["blocking", "json"] } |
|
regex = "1.5.4" |
|
|
|
[features] |
|
default = [ "custom-protocol" ] |
|
custom-protocol = [ "tauri/custom-protocol" ]
|
|
|