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

cis2-dynamic-nft example contract #368

Merged
merged 14 commits into from
Jan 11, 2024
Binary file added .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
- examples/voting/Cargo.toml
- examples/eSealing/Cargo.toml
- examples/auction/Cargo.toml
- examples/cis2-dynamic-nft/Cargo.toml
bogacyigitbasi marked this conversation as resolved.
Show resolved Hide resolved
- examples/cis2-multi/Cargo.toml
- examples/cis2-multi-royalties/Cargo.toml
- examples/cis2-nft/Cargo.toml
Expand Down
23 changes: 23 additions & 0 deletions examples/cis2-dynamic-nft/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[package]
bogacyigitbasi marked this conversation as resolved.
Show resolved Hide resolved
name = "cis2_dynamic_nft"
version = "0.1.0"
authors = [ "bogachanyigitbasi" ]
bogacyigitbasi marked this conversation as resolved.
Show resolved Hide resolved
edition = "2021"
license = "MPL-2.0"
description = " "
bogacyigitbasi marked this conversation as resolved.
Show resolved Hide resolved

[features]
default = ["std"]
std = ["concordium-std/std", "concordium-cis2/std"]
wee_alloc = ["concordium-std/wee_alloc"]

[dependencies]
concordium-std = {version = "7.0", default-features = false}
concordium-cis2 = {version = "4.0", default-features = false}

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

[profile.release]
codegen-units = 1
opt-level = "s"
Loading