Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix cargo files that were broken after the last commit #70

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions eth-connector-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "aurora-eth-connector-tests"
version .workspace= true
author.workspaces = true
edition.workspaces = true
version.workspace = true
authors.workspace = true
edition.workspace = true
description = ""
documentation = ""
readme = true
homepage.workspaces = true
repository.workspaces = true
license.workspaces = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
publish = false
autobenches = false

Expand Down
14 changes: 7 additions & 7 deletions eth-connector/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[package]
name = "aurora-eth-connector"
version .workspace= true
author.workspaces = true
edition.workspaces = true
version.workspace = true
authors.workspace = true
edition.workspace = true
description = "Aurora Eth Connector NEAR contract"
documentation = ""
readme = true
homepage.workspaces = true
repository.workspaces = true
license.workspaces = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
publish = false
autobenches = false

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

[dependencies]
aurora-engine-types = { worspace = true, features = ["impl-serde", "borsh-compat"] }
aurora-engine-types = { workspace = true, features = ["impl-serde", "borsh-compat"] }
byte-slice-cast = "1"
ethabi = { version = "18", default-features = false }
hex = "0.4"
Expand Down
Loading