[package]
edition = "2021"
name = "oxihuman-cli"
version = "0.2.1"
authors = ["COOLJAPAN OU (Team KitaSan)"]
build = false
exclude = [
"target/",
"tests/fixtures/",
"*.wasm",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for OxiHuman body generation and export"
homepage = "https://github.com/cool-japan/oxihuman"
documentation = "https://docs.rs/oxihuman-cli"
readme = "README.md"
keywords = [
"cli",
"human",
"body",
"export",
"makehuman",
]
categories = [
"command-line-utilities",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxihuman"
[lib]
name = "oxihuman_cli"
path = "src/lib.rs"
[[bin]]
name = "oxihuman"
path = "src/main.rs"
[[test]]
name = "cli_unit_anim"
path = "tests/cli_unit_anim.rs"
[[test]]
name = "cli_unit_core"
path = "tests/cli_unit_core.rs"
[[test]]
name = "cli_unit_export"
path = "tests/cli_unit_export.rs"
[[test]]
name = "cli_unit_pack"
path = "tests/cli_unit_pack.rs"
[[test]]
name = "e2e_tests"
path = "tests/e2e_tests.rs"
[[test]]
name = "pack_core_tests"
path = "tests/pack_core_tests.rs"
[dependencies.anyhow]
version = "1.0.103"
[dependencies.oxihuman-core]
version = "0.2.1"
features = ["net"]
[dependencies.oxihuman-export]
version = "0.2.1"
[dependencies.oxihuman-mesh]
version = "0.2.1"
[dependencies.oxihuman-morph]
version = "0.2.1"
[dependencies.oxihuman-physics]
version = "0.2.1"
[dependencies.oxihuman-viewer]
version = "0.2.1"
[dependencies.serde_json]
version = "1.0.150"
[dev-dependencies]