# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "tmf" version = "0.2.1" authors = ["FractalFir "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "TMF is a 3D model compression format achieving compression ratio of between 4.2 and 1.95, while being very fast to read and having no visual difference between compressed and uncompressed models." readme = "README.md" keywords = [ "graphics", "3D", "compression", "lossy", "gamedev", ] categories = [ "game-development", "rendering::data-formats", "compression", ] license = "MIT" license-file = "LICENSE" repository = "https://github.com/FractalFir/tmf" [profile.bench] debug = 2 [lib] name = "tmf" path = "src/lib.rs" [[bench]] name = "read_write_tmf" path = "benches/read_write_tmf.rs" harness = false [[bench]] name = "unaligned_rw" path = "benches/unaligned_rw.rs" harness = false [dependencies.document-features] version = "0.2.7" [dependencies.futures] version = "0.3.28" [dependencies.lazy_static] version = "1.4.0" optional = true [dependencies.smallvec] version = "1.10.0" [dependencies.thiserror] version = "1" [dependencies.tokio] version = "1.28.1" features = [ "rt", "rt-multi-thread", ] optional = true [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.rand] version = "0.8.5" [features] byte_rw = [] default = ["obj_import"] double_precision = [] fast_trig = [] long_indices = [] model_importer = [] obj_import = ["model_importer"] short_indices = [] tokio_runtime = [ "tokio", "lazy_static", ] triangulation = []