decasify 0.10.0__tar.gz → 0.10.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {decasify-0.10.0 → decasify-0.10.1}/Cargo.lock +2 -2
- {decasify-0.10.0 → decasify-0.10.1}/Cargo.toml +3 -3
- {decasify-0.10.0 → decasify-0.10.1}/PKG-INFO +2 -2
- {decasify-0.10.0 → decasify-0.10.1}/README.md +1 -1
- {decasify-0.10.0 → decasify-0.10.1}/build-aux/build.rs +0 -0
- {decasify-0.10.0 → decasify-0.10.1}/pyproject.toml +0 -0
- {decasify-0.10.0 → decasify-0.10.1}/src/bin/decasify.rs +0 -0
- {decasify-0.10.0 → decasify-0.10.1}/src/cli.rs +0 -0
- {decasify-0.10.0 → decasify-0.10.1}/src/content.rs +0 -0
- {decasify-0.10.0 → decasify-0.10.1}/src/en.rs +0 -0
- {decasify-0.10.0 → decasify-0.10.1}/src/lib.rs +0 -0
- {decasify-0.10.0 → decasify-0.10.1}/src/lua.rs +0 -0
- {decasify-0.10.0 → decasify-0.10.1}/src/python.rs +0 -0
- {decasify-0.10.0 → decasify-0.10.1}/src/tr.rs +0 -0
- {decasify-0.10.0 → decasify-0.10.1}/src/traits.rs +0 -0
- {decasify-0.10.0 → decasify-0.10.1}/src/types.rs +0 -0
- {decasify-0.10.0 → decasify-0.10.1}/src/wasm.rs +0 -0
- {decasify-0.10.0 → decasify-0.10.1}/tests/cli.rs +0 -0
- {decasify-0.10.0 → decasify-0.10.1}/tests/lib.rs +0 -0
|
@@ -307,7 +307,7 @@ dependencies = [
|
|
|
307
307
|
|
|
308
308
|
[[package]]
|
|
309
309
|
name = "decasify"
|
|
310
|
-
version = "0.10.
|
|
310
|
+
version = "0.10.1"
|
|
311
311
|
dependencies = [
|
|
312
312
|
"anyhow",
|
|
313
313
|
"assert_cmd",
|
|
@@ -1923,7 +1923,7 @@ dependencies = [
|
|
|
1923
1923
|
|
|
1924
1924
|
[[package]]
|
|
1925
1925
|
name = "typst"
|
|
1926
|
-
version = "0.10.
|
|
1926
|
+
version = "0.10.1"
|
|
1927
1927
|
dependencies = [
|
|
1928
1928
|
"anyhow",
|
|
1929
1929
|
"decasify",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "decasify"
|
|
3
|
-
version = "0.10.
|
|
3
|
+
version = "0.10.1"
|
|
4
4
|
description = "A CLI utility and library to cast strings to title-case according to locale specific style guides including Turkish support"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
build = "build-aux/build.rs"
|
|
@@ -13,7 +13,7 @@ repository.workspace = true
|
|
|
13
13
|
license.workspace = true
|
|
14
14
|
|
|
15
15
|
[workspace.package]
|
|
16
|
-
version = "0.10.
|
|
16
|
+
version = "0.10.1"
|
|
17
17
|
authors = ["Caleb Maclennan <caleb@alerque.com>"]
|
|
18
18
|
homepage = "https://github.com/alerque/decasify"
|
|
19
19
|
repository = "https://github.com/alerque/decasify"
|
|
@@ -64,7 +64,7 @@ wasm = ["dep:wasm-bindgen"]
|
|
|
64
64
|
|
|
65
65
|
[workspace.dependencies.decasify]
|
|
66
66
|
path = "."
|
|
67
|
-
version = "0.10.
|
|
67
|
+
version = "0.10.1"
|
|
68
68
|
|
|
69
69
|
[dependencies]
|
|
70
70
|
regex = "1.11"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: decasify
|
|
3
|
-
Version: 0.10.
|
|
3
|
+
Version: 0.10.1
|
|
4
4
|
Classifier: Development Status :: 5 - Production/Stable
|
|
5
5
|
Classifier: Intended Audience :: Developers
|
|
6
6
|
Classifier: Natural Language :: English
|
|
@@ -244,7 +244,7 @@ The [decasify](https://typst.app/universe/package/decasify) package can be added
|
|
|
244
244
|
The exact version must be specified explicitly:
|
|
245
245
|
|
|
246
246
|
```typst
|
|
247
|
-
#import "@preview/decasify:0.10.
|
|
247
|
+
#import "@preview/decasify:0.10.1": *
|
|
248
248
|
```
|
|
249
249
|
|
|
250
250
|
Specific functions for each case should be available throughout the document.
|
|
@@ -222,7 +222,7 @@ The [decasify](https://typst.app/universe/package/decasify) package can be added
|
|
|
222
222
|
The exact version must be specified explicitly:
|
|
223
223
|
|
|
224
224
|
```typst
|
|
225
|
-
#import "@preview/decasify:0.10.
|
|
225
|
+
#import "@preview/decasify:0.10.1": *
|
|
226
226
|
```
|
|
227
227
|
|
|
228
228
|
Specific functions for each case should be available throughout the document.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|