33 lines
875 B
TOML
33 lines
875 B
TOML
[package]
|
|
name = "robin"
|
|
version = "0.1.0"
|
|
description = "Robin — Linux migration companion for Windows and macOS switchers"
|
|
authors = ["Circuit Forge LLC"]
|
|
license = "BUSL-1.1"
|
|
repository = "https://git.opensourcesolarpunk.com/Circuit-Forge/robin"
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "robin_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.6.2" }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
log = "0.4"
|
|
anyhow = "1.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
toml = "0.8"
|
|
notify = "8"
|
|
dirs = "6"
|
|
tauri = { version = "2.11.2", features = ["tray-icon"] }
|
|
tauri-plugin-log = "2"
|
|
tauri-plugin-notification = "2"
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-fs = "2"
|