mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-19 02:48:12 +08:00
WIP
This commit is contained in:
4
Cargo.lock
generated
4
Cargo.lock
generated
@@ -2411,6 +2411,10 @@ dependencies = [
|
||||
"winres",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "graphite-desktop-update"
|
||||
version = "0.0.0"
|
||||
|
||||
[[package]]
|
||||
name = "graphite-desktop-wrapper"
|
||||
version = "0.1.0"
|
||||
|
||||
@@ -3,6 +3,7 @@ members = [
|
||||
"desktop",
|
||||
"desktop/wrapper",
|
||||
"desktop/embedded-resources",
|
||||
"desktop/update",
|
||||
"desktop/bundle",
|
||||
"desktop/platform/linux",
|
||||
"desktop/platform/mac",
|
||||
|
||||
11
desktop/update/Cargo.toml
Normal file
11
desktop/update/Cargo.toml
Normal file
@@ -0,0 +1,11 @@
|
||||
[package]
|
||||
name = "graphite-desktop-update"
|
||||
version = "0.0.0"
|
||||
description = "Graphite Desktop Update"
|
||||
authors = ["Graphite Authors <contact@graphite.art>"]
|
||||
license = "Apache-2.0"
|
||||
repository = ""
|
||||
edition = "2024"
|
||||
rust-version = "1.87"
|
||||
|
||||
[dependencies]
|
||||
37
desktop/update/src/lib.rs
Normal file
37
desktop/update/src/lib.rs
Normal file
@@ -0,0 +1,37 @@
|
||||
pub struct Info {
|
||||
pub commit: Commit,
|
||||
pub system: System,
|
||||
pub package: Package,
|
||||
pub version: Version,
|
||||
}
|
||||
|
||||
pub struct Commit {
|
||||
pub hash: String,
|
||||
pub time: u64,
|
||||
}
|
||||
|
||||
pub struct System {
|
||||
pub os: Os,
|
||||
pub arch: Arch,
|
||||
}
|
||||
|
||||
pub enum Os {
|
||||
Linux,
|
||||
Mac,
|
||||
Windows,
|
||||
}
|
||||
|
||||
pub enum Arch {
|
||||
X86_64,
|
||||
Aarch64,
|
||||
}
|
||||
|
||||
pub struct Version {
|
||||
pub major: u64,
|
||||
pub minor: u64,
|
||||
pub patch: u64,
|
||||
}
|
||||
|
||||
pub struct Package {
|
||||
pub url: String,
|
||||
}
|
||||
Reference in New Issue
Block a user