-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
flow-web: refactor and expose Schema::extend_read_bundle
It also makes sense to attach the routine to models::Schema rather than the `validation` crate.
- Loading branch information
1 parent
aa94b7b
commit db9341b
Showing
8 changed files
with
260 additions
and
160 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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "flow-web" | ||
|
||
# wasm-pack isn't yet fully compatible with workspace inheritance, so we can't use that for these fields | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["Estuary developers <[email protected]>"] | ||
edition = "2021" | ||
license = "BSL" | ||
|
@@ -29,9 +29,9 @@ opt-level = "s" | |
default = ["console_error_panic_hook"] | ||
|
||
[dependencies] | ||
doc = { path = "../doc", default-features = false } # `combine` feature requires `lz4`, which doesn't WASM. | ||
json = { path = "../json" } | ||
# Disable default-featrues of doc to exclude `combine`, which requires `lz4`, which doesn't currently compile to WASM. | ||
doc = { path = "../doc", default-features = false } | ||
models = { path = "../models" } | ||
|
||
url = { workspace = true } | ||
thiserror = { workspace = true } | ||
|
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
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.