[package]
edition = "2024"
rust-version = "1.85"
name = "dxm"
version = "0.2.1"
authors = ["David Malchin <malchin459@gmail.com>"]
build = false
include = [
"src",
"CHANGELOG.md",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI tool for managing FXServer artifacts & resources."
readme = "README.md"
keywords = [
"fivem",
"redm",
"fxserver",
"cfx",
"citizenfx",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/D4isDAVID/dxm"
[lib]
name = "dxm"
path = "src/lib.rs"
[[bin]]
name = "dxm"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.54"
features = [
"cargo",
"env",
]
[dependencies.dxm-artifacts]
version = "0.2.0"
[dependencies.dxm-home]
version = "0.1.2"
[dependencies.dxm-init]
version = "0.2.0"
[dependencies.dxm-manifest]
version = "0.3.0"
[dependencies.dxm-resources]
version = "0.2.0"
[dependencies.fern]
version = "0.7.1"
[dependencies.log]
version = "0.4.29"
features = ["std"]
[dependencies.reqwest]
version = "0.13.1"
features = ["blocking"]
[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1