mirror of
https://github.com/Astatin3/unshell.git
synced 2026-06-08 22:38:01 -06:00
49 lines
1.3 KiB
TOML
49 lines
1.3 KiB
TOML
[package]
|
|
name = "unshell-gui"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
authors = ["ASTATIN3"]
|
|
include = ["LICENSE-APACHE", "LICENSE-MIT", "**/*.rs", "Cargo.toml"]
|
|
rust-version = "1.88"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
targets = [
|
|
# "x86_64-unknown-linux-gnu",
|
|
"wasm32-unknown-unknown"
|
|
]
|
|
|
|
[dependencies]
|
|
unshell = {path="../"}
|
|
|
|
# log = "0.4.27"
|
|
chrono = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
reqwest = {version = "0.12.26", features=["json"]}
|
|
|
|
# Stuff for app functionality
|
|
egui = "0.33.0"
|
|
eframe = { version = "0.33.0", default-features = false, features = [
|
|
# "accesskit", # Make egui compatible with screen readers. NOTE: adds a lot of dependencies.
|
|
"default_fonts", # Embed the default egui fonts.
|
|
"glow", # Use the glow rendering backend. Alternative: "wgpu".
|
|
"persistence", # Enable restoring app state when restarting the app.
|
|
"wayland", # To support Linux (and CI)
|
|
"x11", # To support older Linux distributions (restores one of the default features)
|
|
] }
|
|
egui_extras = "0.33.2"
|
|
egui_tiles = "0.14.0"
|
|
egui-async = "0.2.6"
|
|
|
|
|
|
# Web Stuff
|
|
wasm-bindgen-futures = "0.4.50"
|
|
wasm-bindgen = "0.2.106"
|
|
web-sys = {version = "0.3.70", features = ['Headers', 'Request', 'RequestInit', 'RequestMode', 'Response', 'Window']}
|