mirror of
https://github.com/project-gauntlet/gauntlet.git
synced 2025-12-23 10:35:53 +00:00
54 lines
1.4 KiB
TOML
54 lines
1.4 KiB
TOML
[package]
|
|
name = "gauntlet-plugin-runtime"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
# workspaces
|
|
gauntlet-common.workspace = true
|
|
gauntlet-component-model.workspace = true
|
|
gauntlet-utils.workspace = true
|
|
|
|
# shared
|
|
anyhow.workspace = true
|
|
tokio.workspace = true
|
|
tokio-util.workspace = true
|
|
serde.workspace = true
|
|
tracing.workspace = true
|
|
indexmap.workspace = true
|
|
bincode.workspace = true
|
|
regex.workspace = true
|
|
futures.workspace = true
|
|
image.workspace = true
|
|
once_cell.workspace = true
|
|
bytes.workspace = true
|
|
walkdir.workspace = true
|
|
typed-path.workspace = true
|
|
interprocess.workspace = true
|
|
|
|
# other
|
|
deno_core = { version = "0.321.0" } # deno 2.1.1
|
|
deno_runtime = { version = "0.188.0" }
|
|
resvg = { version = "0.44.0", default-features = false}
|
|
numbat = "1.14.0"
|
|
which = "7.0.1"
|
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies]
|
|
libc = "0.2"
|
|
x11rb = { version = "0.13", features = ["extra-traits"] }
|
|
encoding = "0.2"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
freedesktop_entry_parser = "1.3"
|
|
freedesktop-icons = "0.2"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
cacao = "0.3.2"
|
|
plist = "1.7.0"
|
|
icns = "0.3.1"
|
|
objc2-app-kit = { version = "0.2.2", features = ["NSWorkspace", "NSImage", "NSImageRep", "NSBitmapImageRep", "NSGraphics", "NSGraphicsContext"] }
|
|
objc2-foundation = { version = "0.2.2", features = ["NSString"] }
|
|
objc2 = "0.5.2"
|
|
|
|
[features]
|
|
scenario_runner = []
|