-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
80 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "decasify" | ||
version = "0.6.0" | ||
version = "0.6.1" | ||
authors = ["Caleb Maclennan <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.73.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
rockspec_format = "1.0" | ||
package = "decasify" | ||
version = "0.6.1-1" | ||
|
||
source = { | ||
url = "git+https://github.com/alerque/decasify.git", | ||
dir = "decasify", | ||
tag = "v0.6.1" | ||
} | ||
|
||
description = { | ||
summary = "Lua C module built from the Rust decasify crate to cast strings to title-case according to locale specific style guides including Turkish support", | ||
detailed = [[ | ||
A Lua library exposed as a C module built from the Rust decasify crate. | ||
Provides casing functions for long strings (not just individual words) | ||
supporting the grammatical style guides of various locales including Turkish. | ||
]], | ||
license = "LGPL-3.0-only", | ||
homepage = "https://github.com/alerque/decasify", | ||
} | ||
|
||
dependencies = { | ||
"lua >= 5.1", | ||
"luarocks-build-rust-mlua >= 0.2.2-1" | ||
} | ||
|
||
build = { | ||
type = "rust-mlua", | ||
modules = { | ||
"decasify" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
rockspec_format = "1.0" | ||
package = "decasify.nvim" | ||
version = "0.6.1-1" | ||
|
||
source = { | ||
url = "git+https://github.com/alerque/decasify.git", | ||
dir = "decasify", | ||
tag = "v0.6.1" | ||
} | ||
|
||
description = { | ||
summary = "NeoVIM plugin wrapping decasify crate to cast strings to title-case according to locale specific style guides including Turkish support", | ||
detailed = [[ | ||
A NeoVIM plugin that wraps the decasify library into an editor command that can easily be used in bindings to | ||
provide casing functions for long strings (not just individual words) supporting the grammatical style guides of | ||
various locales including Turkish. | ||
]], | ||
license = "LGPL-3.0-only", | ||
homepage = "https://github.com/alerque/decasify", | ||
} | ||
|
||
dependencies = { | ||
"lua >= 5.1", | ||
"decasify" | ||
} | ||
|
||
build = { | ||
type = "builtin", | ||
copy_directories = { | ||
"plugin", | ||
} | ||
} |