-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
38 changed files
with
293 additions
and
188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
[package] | ||
name = "fbxcel" | ||
version = "0.6.0" | ||
version = "0.8.0" | ||
authors = ["YOSHIOKA Takuma <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56" | ||
license = "MIT OR Apache-2.0" | ||
readme = "README.md" | ||
description = "Excellent FBX library" | ||
|
@@ -12,6 +13,14 @@ 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. | ||
rustc-args = ["--cfg", "docsrs"] | ||
|
||
[features] | ||
default = [] | ||
|
@@ -22,12 +31,12 @@ writer = [] | |
[dependencies] | ||
byteorder = "1" | ||
indextree = { version = "4", optional = true } | ||
libflate = "0.1" | ||
libflate = "1.0.1" | ||
log = "0.4.4" | ||
string-interner = { version = "0.7", optional = true, default-features = false } | ||
string-interner = { version = "0.14.0", optional = true, default-features = false, features = ["backends", "inline-more", "std"] } | ||
|
||
[dev-dependencies] | ||
env_logger = "0.7" | ||
env_logger = "0.9.0" | ||
|
||
[badges] | ||
maintenance = { status = "passively-maintained" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,27 @@ | ||
//! The excellent FBX library. | ||
//! | ||
//! `low` module provides low-level data types such as FBX header, node | ||
//! [`low`] module provides low-level data types such as FBX header, node | ||
//! attribute value, etc. | ||
//! | ||
//! `pull_parser` module provides pull parser for FBX binary format. | ||
//! [`pull_parser`] module provides pull parser for FBX binary format. | ||
//! ASCII format is not supported. | ||
//! | ||
//! `tree` module provides tree types, which allow users to access FBX data as | ||
//! [`tree`] module provides tree types, which allow users to access FBX data as | ||
//! tree, not as stream of parser events. | ||
//! To use `tree` module, enable `tree` feature. | ||
//! | ||
//! `writer` module provides writer types. | ||
//! [`writer`] module provides writer types. | ||
//! To use `writer` module, enable `writer` feature. | ||
#![cfg_attr(feature = "docsrs", feature(doc_cfg))] | ||
#![forbid(unsafe_code)] | ||
#![warn(missing_docs)] | ||
#![warn(clippy::missing_docs_in_private_items)] | ||
|
||
pub mod low; | ||
pub mod pull_parser; | ||
#[cfg(feature = "tree")] | ||
#[cfg_attr(feature = "docsrs", doc(cfg(feature = "tree")))] | ||
pub mod tree; | ||
#[cfg(feature = "writer")] | ||
#[cfg_attr(feature = "docsrs", doc(cfg(feature = "writer")))] | ||
pub mod writer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.