forked from jkvargas/russimp-sys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (36 loc) · 930 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
37
38
39
40
41
[package]
name = "russimp-sys"
version = "2.0.0"
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"
exclude = ["/assimp", "*.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 = []
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"