-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
36 lines (32 loc) · 887 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
31
32
33
34
35
36
[package]
name = "russimp"
version = "3.2.0"
authors = ["Jhonny Knaak de Vargas"]
edition = "2021"
license-file = "LICENSE"
readme = "README.md"
homepage = "https://github.com/jkvargas/russimp"
categories = ["rendering", "external-ffi-bindings", "game-engines", "multimedia"]
keywords = ["assimp", "3d", "blend", "3ds", "glTF"]
repository = "https://github.com/jkvargas/russimp"
description = "Assimp bindings for rust"
exclude = [ "*.bash", "/models" ]
[lib]
name = "russimp"
path = "src/lib.rs"
[dependencies]
russimp-sys = "2.0.1"
num-derive = "0.4"
num-traits = "0.2.15"
num_enum = "0.6.1"
derivative = "2.2.0"
strum = "0.25"
strum_macros = "0.25"
mint = { version = "0.5.9", optional = true }
[features]
default = []
prebuilt = ["russimp-sys/prebuilt"]
static-link = ["russimp-sys/static-link"]
nozlib = ["russimp-sys/nozlib"]
[package.metadata.docs.rs]
features = ["prebuilt"]