# SPDX-FileCopyrightText: 2024 Jason Pena # SPDX-License-Identifier: GPL-2.0-or-later WITH GPL-CC-1.0 [package] name = "ricer" description = "Experimental rice/dotfile manager" repository = "https://github.com/rice-configs/ricer" authors = ["Jason Pena "] edition = "2021" license = "GPL-2.0-or-later WITH GPL-CC-1.0" version = "0.3.0" rust-version = "1.74.1" build = "build.rs" [lib] name = "ricer_core" doctest = false [[bin]] name = "ricer" path = "src/ricer.rs" doctest = false [dependencies] anyhow = "1.0" clap = { version = "4.5", features = ["derive"] } clap-verbosity-flag = "2.2" const_format = "0.2" directories = "4.0" env_logger = "0.11" git2 = "0.19" indoc = "2" log = "0.4" serde = { version = "1.0", features = ["derive"] } shadow-rs = "0.29" thiserror = "1.0" toml = "0.5" [build-dependencies] shadow-rs = "0.29" [dev-dependencies] assert_cmd = "2.0" pretty_assertions = "1.4"