-
Notifications
You must be signed in to change notification settings - Fork 5
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
1 parent
92c2bac
commit 40d87b5
Showing
10 changed files
with
208 additions
and
77 deletions.
There are no files selected for viewing
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,14 +1,15 @@ | ||
[package] | ||
name = "imagetext_py" | ||
version = "0.1.0" | ||
version = "2.0.1" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[lib] | ||
name = "imagetext_py" | ||
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
pyo3 = { version = "0.18.0", features = ["extension-module"] } | ||
imagetext = { path = "./imagetext", features = ["emoji", "default-emoji-resolver"]} | ||
imagetext = { path = "./imagetext", features = ["emoji", "default-resolver", "fontdb"]} | ||
image = "0.24.5" |
Submodule imagetext
updated
10 files
+3 −1 | .gitignore | |
+1 −20 | Cargo.lock | |
+7 −4 | Cargo.toml | |
+41 −33 | examples/rainbow.rs | |
+21 −1 | src/emoji/mod.rs | |
+2 −2 | src/emoji/source.rs | |
+207 −0 | src/fontdb.rs | |
+12 −1 | src/lib.rs | |
+2 −2 | src/outliner.rs | |
+29 −22 | src/superfont.rs |
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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ build-backend = "maturin" | |
[project] | ||
name = "imagetext_py" | ||
description = "Python bindings for imagetext" | ||
version = "2.0.0" | ||
version = "2.0.1" | ||
authors = [ | ||
{ name = "Nathaniel Fernande", email = "[email protected]" }, | ||
] | ||
|
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
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
Oops, something went wrong.