Skip to content

Commit 1d6007f

Browse files
authored
Merge pull request #1130 from jerus-org/block-publication
chore: update Cargo.toml to use workspace settings for edition, rust-version, and publish
2 parents cc5e6e3 + a0ad641 commit 1d6007f

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3535
- Create CODE_OF_CONDUCT.md(pr [#1097])
3636
- refactor(test-wasm)-remove console_error_panic_hook and unused utilities(pr [#1116])
3737
- docs-update README to add Web Assembly section(pr [#1120])
38+
- chore-update Cargo.toml to use workspace settings for edition, rust-version, and publish(pr [#1130])
3839

3940
### Fixed
4041

@@ -504,6 +505,7 @@ emitted if a tracing subscriber is not found.
504505
[#1127]: https://github.com/jerus-org/hcaptcha-rs/pull/1127
505506
[#1128]: https://github.com/jerus-org/hcaptcha-rs/pull/1128
506507
[#1129]: https://github.com/jerus-org/hcaptcha-rs/pull/1129
508+
[#1130]: https://github.com/jerus-org/hcaptcha-rs/pull/1130
507509
[Unreleased]: https://github.com/jerus-org/hcaptcha-rs/compare/v2.5.0...HEAD
508510
[2.5.0]: https://github.com/jerus-org/hcaptcha-rs/compare/v2.4.9...v2.5.0
509511
[2.4.9]: https://github.com/jerus-org/hcaptcha-rs/compare/v2.4.8...v2.4.9

hcaptcha/examples/hcaptcha-wasm/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
name = "hcaptcha-wasm"
33
version = "0.1.0"
44
authors = ["Jeremiah Russell <[email protected]>"]
5-
edition = "2021"
5+
edition.workspace = true
6+
rust-version.workspace = true
7+
publish.workspace = true
68

79
[lib]
810
crate-type = ["cdylib", "rlib"]

test-wasm/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
name = "test-wasm"
33
version = "0.1.0"
44
authors = ["Jeremiah Russell <[email protected]>"]
5-
edition = "2018"
5+
edition.workspace = true
6+
rust-version.workspace = true
7+
publish.workspace = true
68

79
[lib]
810
crate-type = ["cdylib", "rlib"]

0 commit comments

Comments
 (0)