Skip to content

Commit

Permalink
Merge pull request #36 from fjarri/update-deps
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
fjarri authored Oct 1, 2022
2 parents 4201d42 + 93fb273 commit d44d506
Show file tree
Hide file tree
Showing 6 changed files with 1,170 additions and 1,050 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Methods taking `VerifiedCapsuleFrag` objects use "vcfrag" instead of "cfrag" for their names and the names of the corresponding parameters. (#[33])
- Use a workaround with `wasm-bindgen-derive` to support `Option<&T>` and `Vec<&T>` arguments, and `Vec<T>` and tuple return values, with correct TypeScript annotations. Removed all the Builder pattern helper classes. (#[34])
- Use `Address` instead of plain bytes in arguments and return values (both in WASM and Python bindgins). Export the `Address` type. (#[34])
- `umbral-pre` dependency bumped to 0.7. (#[36])


### Added
Expand All @@ -30,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#32]: https://github.com/nucypher/nucypher-core/pull/32
[#33]: https://github.com/nucypher/nucypher-core/pull/33
[#34]: https://github.com/nucypher/nucypher-core/pull/34
[#36]: https://github.com/nucypher/nucypher-core/pull/36


## [0.4.0-alpha.0] - 2022-09-07
Expand Down
2 changes: 1 addition & 1 deletion nucypher-core-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ crate-type = ["cdylib"]
[dependencies]
pyo3 = "0.16"
nucypher-core = { path = "../nucypher-core" }
umbral-pre = { version = "0.7.0-alpha.0", features = ["bindings-python"] }
umbral-pre = { version = "0.7.0", features = ["bindings-python"] }
derive_more = { version = "0.99", default-features = false, features = ["from", "as_ref"] }

[build-dependencies]
Expand Down
3 changes: 1 addition & 2 deletions nucypher-core-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,10 @@ crate-type = ["cdylib", "rlib"]
default = ["console_error_panic_hook"]

[dependencies]
umbral-pre = { version = "0.7.0-alpha.0", features = ["bindings-wasm"] }
umbral-pre = { version = "0.7.0", features = ["bindings-wasm"] }
nucypher-core = { path = "../nucypher-core" }
wasm-bindgen = "0.2.74"
js-sys = "0.3.51"
wee_alloc = "0.4"
ethereum-types = "0.12.1"
console_error_panic_hook = { version = "0.1.6", optional = true }
derive_more = { version = "0.99", default-features = false, features = ["from", "as_ref"] }
Expand Down
Loading

0 comments on commit d44d506

Please sign in to comment.