-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
125 lines (111 loc) · 2.53 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[package]
name = "ux-dx"
version = "0.2.1"
authors = ["Victor Dudochkin <dudochkin.victor@gmail.com>"]
readme = "README.md"
homepage = "https://angular-rust.github.io/ux-dx"
repository = "https://github.com/angular-rust/ux-dx"
documentation = "https://docs.rs/ux-dx"
description = "3D Graphics Primitives for Angular Rust"
keywords = ["canvas", "webgl", "opengl", "opengles", "vulkan"]
categories = ["data-structures"]
edition = "2018"
license = "MPL-2.0"
[badges]
maintenance = { status = "actively-developed" }
[lib]
name = "dx"
# [package.metadata.docs.rs]
# features = ["dox"]
[features]
default = ["image-loading", "decals", "audio", "skin", "batch", "stream", "probes", "terrain", "particles", "deinterleaved"]
image-loading = [] #["image"]
dox = []
decals = []
audio = []
skin = []
batch = []
stream = []
probes = []
terrain = []
particles = []
deinterleaved = []
# "ffi/dox", "glib/dox", "glib-sys/dox", "gobject-sys/dox"
[dependencies]
png = "0.17"
bytes = "1.0"
fontdue = "0.5"
ux-primitives = "0.2"
ruex = "0.1"
ux-vg = "0.2"
once_cell = "1.7"
intmap = "0.7"
image = "0.23"
gilrs = "0.8" #udev
winit = "0.25"
shaderc = "0.7"
cgmath = "0.18"
log = "0.4"
futures = "0.3"
raw-window-handle = "0.3"
warmy = "0.13"
structopt = "0.3"
ddsfile = "0.4"
# fbxcel-dom = "0"
directories = "4.0"
rand = "0.8"
# num-traits = "0.2"
regex = "1.5"
egl = {package = "khronos-egl", version = "4.1", features = ["dynamic"] }
libloading = "0.7"
bitflags = "1.2"
wgpu-types = "0.10"
#gles
khronos = "0.1"
libc = "0.2"
glyph_brush = "0.7"
twox-hash = "1.6"
spin_sleep = "1.0"
approx = "0.5"
async-trait = "0.1.51"
tokio = "1.10.0"
#nvg
slab = "0.4"
anyhow = "1.0"
nvg = "0.5.11"
# support/glyph
bytemuck = "1.7.2"
# support/iced
iced_native = "0.4.0"
window_clipboard = "0.2.1"
iced_graphics = {version = "0.2", features = ["font-fallback", "font-icons", "opengl"]}
# ux-vg
fnv = "1.0"
rgb = "0.8"
imgref = "1.6"
generational-arena = "0.2"
owned_ttf_parser = "0.12"
rustybuzz = "0.4"
unicode-bidi = "0.3"
unicode-segmentation = "1.6"
lru = { version = "0.6.5", default-features = false }
[dev-dependencies]
env_logger = "0.9"
genmesh = "0.6"
rand = "0.8"
chrono = "0.4"
winit = { version = "0.25", default-features = false }
# vg example
svg = "0.10"
# should use 0.15
usvg = { version = "0.15", default-features = false }
xmlwriter = "0.1"
instant = { version = "0.1", features = [ "now" ] }
resource = "0.5"
image = { version = "0.23", default-features = false, features = ["jpeg", "png"] }
[build-dependencies]
anyhow = "1.0"
fs_extra = "1.2"
glob = "0.3"
rayon = "1.4"
shaderc = "0.7"