mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-22 23:48:26 -04:00
* ci: * ci: run ci on ci branch * ci: update pnpm version * ci: Standardise naming * ci: update lockfile * ci: install ffmpeg on unix ci * ci: run codegen prep before build * ci: add libavutil to ubuntu dependencies * ci: add libavutil-dev to ubuntu dependencies * ci: dependencies * ci: fix ubuntu dependencies * ci: only build frontend with desktop * ci: setup cmake and vcpkg for windows * ci: install ffmpeg on windows * ci: fix windows ffmpeg install * ci: fix conditional windows ci commands * ci: remove vcpkg from windows * ci: optimizations * ci: use custom rust cache version
29 lines
825 B
TOML
29 lines
825 B
TOML
[package]
|
|
name = "spacedrive"
|
|
version = "0.1.0"
|
|
description = "The next gen private virtual filesystem."
|
|
authors = ["Jamie Pine"]
|
|
license = ""
|
|
repository = "https://github.com/jamiepine/spacedrive"
|
|
default-run = "spacedrive"
|
|
edition = "2021"
|
|
build = "src/build.rs"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1.0.0-rc.5", features = [] }
|
|
swift-rs = "0.2.3"
|
|
|
|
[dependencies]
|
|
# Project dependencies
|
|
tauri = { version = "1.0.0-rc.6", features = ["api-all", "macos-private-api"] }
|
|
sdcore = { path = "../../../core" }
|
|
# tauri-plugin-shadows = { git = "https://github.com/tauri-apps/tauri-plugin-shadows", features = ["tauri-impl"] }
|
|
|
|
# Universal Dependencies
|
|
tokio = { version = "1.17.0", features = ["sync"] }
|
|
window-shadows = "0.1.2"
|
|
|
|
[features]
|
|
default = [ "custom-protocol" ]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|