-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 781 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 781 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
29
30
31
32
33
34
35
36
[package]
name = "plygui-test"
version = "0.1.0"
authors = ["snuk182 <snuk188@gmail.com>"]
edition = "2018"
description = "Plygui Test"
# start with `cargo bundle --bin uitest`
[package.metadata.bundle.bin.uitest]
name = "plygui"
identifier = "plygui.test"
icon = ["resources/icon*.png"]
category = "Utility"
short_description = "Test application of Plygui"
long_description = """
An application with a demonstration of random features of Plygui framework.
"""
[[test]]
name = "tests"
path = "src/tests.rs"
harness = false
[lib]
name = "plygui_test"
path = "src/lib.rs"
[[bin]]
name = "uitest"
path = "src/main.rs"
[dependencies]
plygui = {version = "0.0.1", path = "../plygui/lib"}
#[dependencies]
#plygui = {version = "0.0.1", path = "../plygui-qt", package = "plygui-qt"}