-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (28 loc) · 903 Bytes
/
Cargo.toml
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
29
30
[package]
name = "plow_gui"
description = "A simple GUI application for the Plow ontology package manager."
version = "0.1.1"
license = "MIT OR Apache-2.0"
keywords = ["plow", "owl", "gui"]
authors = ["Maximilian Goisser <[email protected]>", "Ali Somay <[email protected]>"]
repository = "https://github.com/field33/plow/"
edition = "2021"
[dependencies]
# NOTE: plow_gui is out of sync with the rest of the crates and currently in maintenance status
plow_ontology = "0.1"
plow_package_management = "0.1"
plow_linter = "0.1"
harriet = "0.1"
nom = "7"
anyhow = { version = "1.0.42", features = ["backtrace"] }
rfd = "0.9"
iced = { version = "0.3", features = ["async-std"] }
iced_native = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
async-std = "1.0"
notify = "5.0.0-pre.13"
dirs = "4.0.0"
open = "3"
# Required, as 1.0.0-alpha.9 fails to build
value-bag = "=1.0.0-alpha.6"