-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: replace non-fungible token example sim tests with workspaces (
#702)
- Loading branch information
Showing
17 changed files
with
1,966 additions
and
2,572 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,14 +5,14 @@ authors = ["Near Inc <[email protected]>"] | |
edition = "2018" | ||
|
||
[dev-dependencies] | ||
near-sdk = { path = "../../near-sdk" } | ||
near-sdk-sim = { path = "../../near-sdk-sim" } | ||
anyhow = "1.0" | ||
near-primitives = "0.5.0" | ||
near-contract-standards = { path = "../../near-contract-standards" } | ||
|
||
# remember to include a line for each contract | ||
non-fungible-token = { path = "./nft" } | ||
approval-receiver = { path = "./test-approval-receiver" } | ||
token-receiver = { path = "./test-token-receiver" } | ||
near-sdk = { path = "../../near-sdk" } | ||
near-units = "0.2.0" | ||
serde_json = "1.0" | ||
tokio = { version = "1.14", features = ["full"] } | ||
workspaces = "0.1.1" | ||
|
||
[profile.release] | ||
codegen-units = 1 | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ authors = ["Near Inc <[email protected]>"] | |
edition = "2018" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
near-sdk = { path = "../../../near-sdk" } | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -5,9 +5,8 @@ authors = ["Near Inc <[email protected]>"] | |
edition = "2018" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
near-sdk = { path = "../../../near-sdk" } | ||
near-contract-standards = { path = "../../../near-contract-standards" } | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ authors = ["Near Inc <[email protected]>"] | |
edition = "2018" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
near-sdk = { path = "../../../near-sdk" } | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.