-
Notifications
You must be signed in to change notification settings - Fork 22
/
Cargo.toml
58 lines (53 loc) · 1.07 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
[package]
name = "russimp-sys"
version = "2.0.3"
authors = ["Jhonny Knaak de Vargas"]
edition = "2021"
license-file = "LICENSE"
readme = "README.md"
homepage = "https://github.com/jkvargas/russimp-sys"
categories = [
"rendering",
"external-ffi-bindings",
"game-engines",
"multimedia",
]
keywords = ["assimp", "3d", "blend", "3ds", "glTF"]
repository = "https://github.com/jkvargas/russimp-sys"
description = "Raw Assimp bindings for Rust"
include = [
"/assimp/",
"/src/",
"/bin/",
"/build.rs",
"/wrapper.h",
"/Cargo.toml",
"/LICENSE",
"/README.md",
"!*.bash",
"!*.ps1",
]
[lib]
name = "russimp_sys"
path = "src/lib.rs"
doctest = false
[[bin]]
name = "package"
path = "bin/package/main.rs"
[features]
default = []
build-assimp = []
prebuilt = []
nozlib = []
static-link = ["build-assimp"]
[dependencies]
flate2 = "1.0.25"
tar = "0.4.38"
[build-dependencies]
bindgen = "0.63.0"
built = "0.5.2"
cmake = "0.1.49"
flate2 = "1.0.25"
reqwest = { version = "0.11.13", features = ["blocking", "rustls-tls"] }
tar = "0.4.38"
which = "4.3.0"