mirror of
https://github.com/pesde-pkg/pesde.git
synced 2024-12-12 11:00:36 +00:00
docs: update tagline
This commit is contained in:
parent
863a09ef65
commit
afee3a0c2a
4 changed files with 165 additions and 220 deletions
374
Cargo.lock
generated
374
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -4,7 +4,7 @@ version = "0.5.0-dev.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["daimond113 <contact@daimond113.com>"]
|
authors = ["daimond113 <contact@daimond113.com>"]
|
||||||
description = "A package manager for Luau"
|
description = "A package manager for the Luau programming language, supporting multiple runtimes including Roblox and Lune"
|
||||||
homepage = "https://pesde.daimond113.com"
|
homepage = "https://pesde.daimond113.com"
|
||||||
repository = "https://github.com/daimond113/pesde"
|
repository = "https://github.com/daimond113/pesde"
|
||||||
include = ["src/**/*", "Cargo.toml", "Cargo.lock", "README.md", "LICENSE", "CHANGELOG.md"]
|
include = ["src/**/*", "Cargo.toml", "Cargo.lock", "README.md", "LICENSE", "CHANGELOG.md"]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#![deny(missing_docs)]
|
#![deny(missing_docs)]
|
||||||
//! pesde is a package manager for Luau, designed to be feature-rich and easy to use.
|
//! A package manager for the Luau programming language, supporting multiple runtimes including Roblox and Lune.
|
||||||
//! pesde has its own registry, however it can also use Wally, and GitHub as package sources.
|
//! pesde has its own registry, however it can also use Wally, and Git repositories as package sources.
|
||||||
//! It has been designed with multiple targets in mind, namely Roblox, Lune, and Luau.
|
//! It has been designed with multiple targets in mind, namely Roblox, Lune, and Luau.
|
||||||
|
|
||||||
#[cfg(not(any(feature = "roblox", feature = "lune", feature = "luau")))]
|
#[cfg(not(any(feature = "roblox", feature = "lune", feature = "luau")))]
|
||||||
|
|
|
@ -23,7 +23,10 @@ mod cli;
|
||||||
pub mod util;
|
pub mod util;
|
||||||
|
|
||||||
#[derive(Parser, Debug)]
|
#[derive(Parser, Debug)]
|
||||||
#[clap(version, about = "pesde is a feature-rich package manager for Luau")]
|
#[clap(
|
||||||
|
version,
|
||||||
|
about = "A package manager for the Luau programming language, supporting multiple runtimes including Roblox and Lune"
|
||||||
|
)]
|
||||||
#[command(disable_version_flag = true)]
|
#[command(disable_version_flag = true)]
|
||||||
struct Cli {
|
struct Cli {
|
||||||
/// Print version
|
/// Print version
|
||||||
|
|
Loading…
Reference in a new issue