[package]
edition = "2024"
rust-version = "1.85"
name = "muntjac"
version = "0.2.0"
authors = ["Jack Mayo <jackomayo@gmail.com>"]
build = false
exclude = [
"tests/fixtures/**",
"docs/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Translate uv.lock into Buck2 build rules"
homepage = "https://github.com/rsJames-ttrpg/muntjac"
documentation = "https://docs.rs/muntjac"
readme = "README.md"
keywords = [
"buck2",
"python",
"uv",
"lockfile",
"build-system",
]
categories = [
"development-tools::build-utils",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/rsJames-ttrpg/muntjac"
[lib]
name = "muntjac"
path = "src/lib.rs"
[[bin]]
name = "muntjac"
path = "src/main.rs"
[[test]]
name = "buckify"
path = "tests/buckify.rs"
[[test]]
name = "config_check"
path = "tests/config_check.rs"
[[test]]
name = "fixups_show_smoke"
path = "tests/fixups_show_smoke.rs"
[[test]]
name = "fixups_update_smoke"
path = "tests/fixups_update_smoke.rs"
[[test]]
name = "git_fetch_integration"
path = "tests/git_fetch_integration.rs"
[[test]]
name = "git_fixture_smoke"
path = "tests/git_fixture_smoke.rs"
[[test]]
name = "help"
path = "tests/help.rs"
[[test]]
name = "init"
path = "tests/init.rs"
[[test]]
name = "multi_tree"
path = "tests/multi_tree.rs"
[[test]]
name = "pick_wheels"
path = "tests/pick_wheels.rs"
[[test]]
name = "print_deps"
path = "tests/print_deps.rs"
[[test]]
name = "stubs"
path = "tests/stubs.rs"
[[test]]
name = "vendor_smoke"
path = "tests/vendor_smoke.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.dirs]
version = "5"
[dependencies.filetime]
version = "0.2"
[dependencies.flate2]
version = "1"
[dependencies.gix]
version = "0.83"
features = ["blocking-network-client"]
[dependencies.glob]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.miette]
version = "7"
features = ["fancy"]
[dependencies.pathdiff]
version = "0.2"
[dependencies.pep440_rs]
version = "0.7"
[dependencies.pep508_rs]
version = "0.9"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.tar]
version = "0.4"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2.0"
[dependencies.toml]
version = "0.8"
[dependencies.toml_edit]
version = "0.22"
[dependencies.url]
version = "2"
features = ["serde"]
[dependencies.walkdir]
version = "2.5.0"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.httpmock]
version = "0.7"
[dev-dependencies.insta]
version = "1"
features = ["yaml"]
[dev-dependencies.predicates]
version = "3"