[package]
edition = "2024"
rust-version = "1.88"
name = "dxm"
version = "0.3.0"
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.6.1"
features = [
"std",
"help",
"usage",
"error-context",
"cargo",
]
default-features = false
[dependencies.dxm-artifacts]
version = "0.3.0"
[dependencies.dxm-home]
version = "0.1.5"
[dependencies.dxm-init]
version = "0.3.0"
[dependencies.dxm-manifest]
version = "0.5.0"
[dependencies.dxm-resources]
version = "0.3.0"
[dependencies.fern]
version = "0.7.1"
[dependencies.log]
version = "0.4.29"
features = ["std"]
[dependencies.reqwest]
version = "0.13.3"
features = [
"http2",
"native-tls",
"charset",
"system-proxy",
"blocking",
]
default-features = false
[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1
strip = "symbols"