-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor/transform: introduce transform and improve error handling (#35)
* refactor/transform: introduce transform and improve error handling Co-authored-by: Benjamin Minixhofer <[email protected]>
- Loading branch information
1 parent
cc79981
commit 44871a1
Showing
5 changed files
with
430 additions
and
164 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "nlprule-build" | ||
version = "0.4.5-pre" | ||
authors = ["Benjamin Minixhofer <[email protected]>"] | ||
authors = ["Benjamin Minixhofer <[email protected]>", "Bernhard Schuster <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
description = "Build tools for a fast, low-resource Natural Language Processing and Error Correction library." | ||
|
@@ -17,7 +17,9 @@ directories = "3" | |
reqwest = { version = "0.11", default_features = false, features = ["blocking", "rustls-tls"]} | ||
nlprule = { path = "../nlprule", features = ["compile"], version = "0.4.5-pre" } # BUILD_BINDINGS_COMMENT | ||
# nlprule = { package = "nlprule-core", path = "../nlprule", features = ["compile"] } # BUILD_BINDINGS_UNCOMMENT | ||
fs-err = "2.5" | ||
|
||
[dev-dependencies] | ||
tempdir = "0.3" | ||
smush = "0.1.5" | ||
smush = "0.1.5" | ||
env_logger = "0.8" |
Oops, something went wrong.