-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
35 lines (31 loc) · 1.04 KB
/
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
31
32
33
34
35
# Barg
#
# Copyright © 2017-2019 Jeron Aldaron Lau.
# Dual-licensed under either the MIT License or the Boost Software License,
# Version 1.0. (See accompanying file LICENSE_BSL.txt or copy at
# https://www.boost.org/LICENSE_1_0.txt and accompanying file LICENSE_MIT.txt or
# copy at https://opensource.org/licenses/MIT)
[package]
name = "barg"
version = "0.2.0"
authors = ["Jeron Aldaron Lau <[email protected]>"]
edition = "2018"
license = "MIT / BSL-1.0"
documentation = "https://docs.rs/barg"
homepage = "https://code.plopgrizzly.com/barg"
repository = "https://github.com/plopgrizzly/barg"
readme = "README.md"
description = "A GUI toolkit & 3D graphics renderer."
keywords = ["graphics", "render", "vector", "3D", "render"]
categories = ["gui", "multimedia", "rendering::graphics-api"]
[dependencies]
# For Window
window = "0.2" # { path = "../window" }
# For Rendering Including Text
fonterator = "0.4"
# For Loading RVG Files.
rvg = { version = "0.0.2", features = ["footile"] }
[build-dependencies]
res = "0.4"
[dev-dependencies]
png = "0.14"