Files
kagami/Cargo.toml
T

45 lines
1.1 KiB
TOML

[package]
name = "kagami"
version = "0.1.0"
edition = "2024"
resolver = "2"
license = "BSD-3-Clause"
authors = [
"Programvareverkstedet <projects@pvv.ntnu.no>",
]
homepage = "https://git.pvv.ntnu.no/Projects/kagami"
repository = "https://git.pvv.ntnu.no/Projects/kagami"
description = "Git mirror and backup tooling for various code forges"
categories = ["command-line-interface", "command-line-utilities"]
keywords = ["cli", "git", "mirror", "backup"]
readme = "README.md"
autobins = false
autolib = false
[dependencies]
anyhow = "1.0.102"
clap = { version = "4.6.1", features = ["derive"] }
clap_complete = "4.6.2"
forgejo-api = { version = "0.10.0", default-features = false, features = ["rustls-tls"] }
gitea-sdk = "0.6.1"
gitlab = "0.1811.0"
gix = "0.82.0"
octocrab = "0.49.8"
regex = "1.12.3"
sd-notify = "0.5.0"
serde = "1.0.228"
serde_json = "1.0.149"
tokio = { version = "1.52.1", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.44"
tracing-journald = "0.3.2"
[[bin]]
name = "kagami"
path = "src/main.rs"
[profile.release-lto]
inherits = "release"
strip = true
lto = true
codegen-units = 1