mirror of
https://github.com/pesde-pkg/pesde.git
synced 2024-12-12 11:00:36 +00:00
68 lines
2.3 KiB
TOML
68 lines
2.3 KiB
TOML
[package]
|
|
name = "pesde"
|
|
version = "0.5.0-dev.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["daimond113 <contact@daimond113.com>"]
|
|
description = "A package manager for Luau"
|
|
homepage = "https://pesde.daimond113.com"
|
|
repository = "https://github.com/daimond113/pesde"
|
|
include = ["src/**/*", "Cargo.toml", "Cargo.lock", "README.md", "LICENSE", "CHANGELOG.md"]
|
|
|
|
[features]
|
|
bin = ["clap", "directories", "pretty_env_logger", "reqwest/json", "reqwest/multipart", "indicatif", "indicatif-log-bridge", "inquire", "toml_edit", "colored", "anyhow", "keyring", "open", "gix/worktree-mutation"]
|
|
wally-compat = ["zip"]
|
|
roblox = []
|
|
lune = []
|
|
luau = []
|
|
|
|
[[bin]]
|
|
name = "pesde"
|
|
path = "src/main.rs"
|
|
required-features = ["bin"]
|
|
|
|
[lints.clippy]
|
|
uninlined_format_args = "warn"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.204", features = ["derive"] }
|
|
toml = "0.8.15"
|
|
serde_json = "1.0.120"
|
|
serde_with = "3.9.0"
|
|
gix = { version = "0.63.0", default-features = false, features = ["blocking-http-transport-reqwest-rust-tls", "revparse-regex", "credentials"] }
|
|
semver = { version = "1.0.23", features = ["serde"] }
|
|
reqwest = { version = "0.12.5", default-features = false, features = ["rustls-tls", "blocking"] }
|
|
tar = "0.4.41"
|
|
flate2 = "1.0.30"
|
|
pathdiff = "0.2.1"
|
|
relative-path = { version = "1.9.3", features = ["serde"] }
|
|
log = "0.4.22"
|
|
thiserror = "1.0.63"
|
|
threadpool = "1.8.1"
|
|
full_moon = { version = "1.0.0-rc.5", features = ["luau"] }
|
|
url = { version = "2.5.2", features = ["serde"] }
|
|
cfg-if = "1.0.0"
|
|
# TODO: reevaluate whether to use this
|
|
# secrecy = "0.8.0"
|
|
chrono = { version = "0.4.38", features = ["serde"] }
|
|
|
|
zip = { version = "2.1.5", optional = true }
|
|
|
|
anyhow = { version = "1.0.86", optional = true }
|
|
open = { version = "5.3.0", optional = true }
|
|
keyring = { version = "3.0.3", features = ["crypto-rust", "windows-native", "apple-native", "linux-native"], optional = true }
|
|
colored = { version = "2.1.0", optional = true }
|
|
toml_edit = { version = "0.22.16", optional = true }
|
|
clap = { version = "4.5.9", features = ["derive"], optional = true }
|
|
directories = { version = "5.0.1", optional = true }
|
|
pretty_env_logger = { version = "0.5.0", optional = true }
|
|
indicatif = { version = "0.17.8", optional = true }
|
|
indicatif-log-bridge = { version = "0.2.2", optional = true }
|
|
inquire = { version = "0.7.5", optional = true }
|
|
|
|
[workspace]
|
|
resolver = "2"
|
|
members = []
|
|
|
|
[profile.dev.package.full_moon]
|
|
opt-level = 3
|