pesde/Cargo.toml

70 lines
2.4 KiB
TOML
Raw Normal View History

2024-03-04 20:18:49 +00:00
[package]
name = "pesde"
2024-07-12 23:09:37 +01:00
version = "0.5.0-dev.0"
2024-03-04 20:18:49 +00:00
edition = "2021"
license = "MIT"
authors = ["daimond113 <contact@daimond113.com>"]
2024-07-12 23:09:37 +01:00
description = "A package manager for Luau"
2024-03-04 20:18:49 +00:00
homepage = "https://pesde.daimond113.com"
2024-03-30 21:45:07 +00:00
repository = "https://github.com/daimond113/pesde"
include = ["src/**/*", "Cargo.toml", "Cargo.lock", "README.md", "LICENSE", "CHANGELOG.md"]
2024-03-04 20:18:49 +00:00
[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"]
2024-07-12 23:09:37 +01:00
roblox = []
lune = []
luau = []
2024-03-04 20:18:49 +00:00
[[bin]]
name = "pesde"
path = "src/main.rs"
required-features = ["bin"]
2024-07-22 15:41:45 +01:00
[lints.clippy]
uninlined_format_args = "warn"
2024-03-04 20:18:49 +00:00
[dependencies]
2024-07-12 23:09:37 +01:00
serde = { version = "1.0.204", features = ["derive"] }
toml = "0.8.15"
2024-07-12 23:09:37 +01:00
serde_json = "1.0.120"
2024-07-22 15:41:45 +01:00
serde_with = "3.9.0"
2024-07-12 23:09:37 +01:00
gix = { version = "0.63.0", default-features = false, features = ["blocking-http-transport-reqwest-rust-tls", "revparse-regex", "credentials", "serde"] }
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"
2024-03-04 20:18:49 +00:00
pathdiff = "0.2.1"
2024-07-12 23:09:37 +01:00
relative-path = { version = "1.9.3", features = ["serde"] }
log = "0.4.22"
2024-07-22 15:41:45 +01:00
thiserror = "1.0.63"
2024-03-04 20:18:49 +00:00
threadpool = "1.8.1"
2024-07-12 23:09:37 +01:00
full_moon = { version = "1.0.0-rc.5", features = ["luau"] }
url = { version = "2.5.2", features = ["serde"] }
cfg-if = "1.0.0"
2024-07-12 23:09:37 +01:00
once_cell = "1.19.0"
2024-07-22 15:41:45 +01:00
# TODO: reevaluate whether to use this
# secrecy = "0.8.0"
2024-07-12 23:09:37 +01:00
chrono = { version = "0.4.38", features = ["serde"] }
2024-07-22 15:41:45 +01:00
zip = { version = "2.1.5", optional = true }
2024-03-04 20:18:49 +00:00
2024-07-12 23:09:37 +01:00
anyhow = { version = "1.0.86", optional = true }
open = { version = "5.3.0", optional = true }
2024-07-22 15:41:45 +01:00
keyring = { version = "3.0.3", features = ["crypto-rust", "windows-native", "apple-native", "linux-native"], optional = true }
2024-07-12 23:09:37 +01:00
colored = { version = "2.1.0", optional = true }
toml_edit = { version = "0.22.16", optional = true }
2024-07-12 23:09:37 +01:00
clap = { version = "4.5.9", features = ["derive"], optional = true }
2024-03-04 20:18:49 +00:00
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 }
2024-07-12 23:09:37 +01:00
inquire = { version = "0.7.5", optional = true }
2024-03-04 20:18:49 +00:00
[workspace]
resolver = "2"
2024-07-12 23:09:37 +01:00
members = []
2024-03-04 20:18:49 +00:00
[profile.dev.package.full_moon]
2024-07-12 23:09:37 +01:00
opt-level = 3