-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 887 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "backstitch-launcher"
version = "0.1.0"
edition = "2024"
authors = ["Lilith Silver"]
license = "MIT"
description = "Ensures the correct Backstitch and Godot versions and runs your project."
[package.metadata.bundle]
name = "backstitch-launcher-macos"
identifier = "com.inkandswitch.backstitch-launcher"
copyright = "Copyright (c) Ink & Switch LLC"
category = "Developer Tool"
short_description = "Launcher for Backstitch Godot projects."
long_description = """
Downloads and runs the matching Backstitch editor and Godot for your project.
"""
[dependencies]
reqwest = { version="0.13.2", features=["json"] }
serde = { version="1.0.228", features=["derive"] }
tokio = { version="1.51.0", features=["rt-multi-thread", "macros", "fs"] }
tokio-util = "0.7.18"
zip = "8.5.0"
# mac only dependencies
[target.'cfg(target_os = "macos")'.dependencies]
untranslocator = "0.1.2"