typescript_tools 5.0.4

Tools for working with TypeScript monorepos
Documentation
[package]
name = "typescript_tools"
version = "5.0.4"
edition = "2021"
authors = ["Eric Crosson <eric.s.crosson@utexas.edu>"]
license = "ISC"
description = "Tools for working with TypeScript monorepos"
readme = "README.md"
homepage = "https://github.com/typescript-tools/rust-implementation"
keywords = ["cli", "typescript", "monorepo"]
categories = ["command-line-utilities"]
exclude = [
  "/.dockerignore",
  "/.editorconfig",
  "/.envrc",
  "/.github",
  "/.gitignore",
  "/.releaserc.json",
  "/.rustfmt.toml",
  "/.versionrc.json",
  "/Dockerfile",
  "/bin/monorepo",
  "/deny.toml",
  "/CHANGELOG.md",
  "/flake.{lock,nix}",
  "/npm",
  "/package*.json"
]

[[bin]]
name = "monorepo"
path = "src/main.rs"

[lib]
name = "typescript_tools"
path = "src/lib.rs"

[dependencies]
anyhow = "1.0.57"
askama = "0.11.1"
clap = { version = "4.1.1", features = ["cargo", "derive"] }
globwalk = "0.8.1"
indoc = "1.0.7"
pariter = "0.5.1"
pathdiff = "0.2.1"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = { version = "1.0.81", features = ["preserve_order"] }

[dev-dependencies]
semantic-release-rust = "1.0.0-alpha.8"

[profile.release]
lto = true
codegen-units = 1
strip = true