-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
49 lines (41 loc) · 1.33 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
[package]
name = "fbxcel"
version = "0.9.0"
authors = ["YOSHIOKA Takuma <[email protected]>"]
edition = "2021"
rust-version = "1.56"
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "Excellent FBX library"
repository = "https://github.com/lo48576/fbxcel"
keywords = ["FBX", "3D", "model"]
categories = ["parser-implementations"]
[package.metadata.docs.rs]
all-features = true
# See <https://docs.rs/about/builds>.
#
# Didn't create `docsrs` feature, since this (`#[doc(cfg(feature = ...))]`)
# depends on nightly feature and it prevents `cargo doc --all-features` from
# running with stable rust toolchain.
# See <https://doc.rust-lang.org/rustdoc/unstable-features.html#extensions-to-the-doc-attribute>
# for unstable `#[doc(cfg(...))]` attribute.
rustdoc-args = ["--cfg", "docsrs"]
[features]
default = []
tree = ["indextree", "string-interner"]
writer = []
[dependencies]
indextree = { version = "4", optional = true }
libflate = "1.0.1"
log = "0.4.4"
string-interner = { version = "0.14.0", optional = true, default-features = false, features = ["backends", "inline-more", "std"] }
[dev-dependencies]
env_logger = "0.9.0"
[badges]
maintenance = { status = "passively-maintained" }
travis-ci = { repository = "lo48576/fbxcel" }
[[example]]
name = "dump-pull-parser-events"
[[example]]
name = "load-tree"
required-features = ["tree"]