[package]
edition = "2021"
rust-version = "1.86"
name = "braze-sync"
version = "0.9.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GitOps CLI for managing Braze configuration as code"
homepage = "https://github.com/uny/braze-sync"
readme = "README.md"
keywords = [
"braze",
"gitops",
"cli",
"marketing",
"devops",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/uny/braze-sync"
[lib]
name = "braze_sync"
path = "src/lib.rs"
[[bin]]
name = "braze-sync"
path = "src/main.rs"
[[test]]
name = "cli_apply"
path = "tests/cli_apply.rs"
[[test]]
name = "cli_diff"
path = "tests/cli_diff.rs"
[[test]]
name = "cli_export"
path = "tests/cli_export.rs"
[[test]]
name = "cli_init"
path = "tests/cli_init.rs"
[[test]]
name = "cli_validate"
path = "tests/cli_validate.rs"
[dependencies.anyhow]
version = "1"
[dependencies.blake3]
version = "1"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
]
default-features = false
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.csv]
version = "1"
[dependencies.dotenvy]
version = "0.15"
[dependencies.fastrand]
version = "2"
[dependencies.futures]
version = "0.3"
features = [
"std",
"async-await",
]
default-features = false
[dependencies.indicatif]
version = "0.17"
[dependencies.regex-lite]
version = "0.1"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
"gzip",
"stream",
]
default-features = false
[dependencies.secrecy]
version = "0.10"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_norway]
version = "0.9"
[dependencies.similar]
version = "2"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"fs",
"time",
"sync",
"io-util",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dependencies.url]
version = "2"
features = ["serde"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.insta]
version = "1"
features = [
"yaml",
"json",
]
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.wiremock]
version = "0.6"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = true