Skip to content

Commit

Permalink
remove nifty asset types crate
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelvanderwaal committed Apr 18, 2024
1 parent a9dbde7 commit dd9b292
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

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

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ dirs = "5.0.1"
indexmap = { version = "2.1.0", features = ["serde"] }
indicatif = "0.17.8"
nifty-asset = { version = "0.4.0", features = ["serde"] }
nifty-asset-types = { version = "0.4.0" }
podded = "0.5.1"
retry = "2.0.0"
serde = "1.0.193"
Expand Down
14 changes: 6 additions & 8 deletions src/commands/decode.rs
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
use std::{fmt, ops::Deref};

use nifty_asset::{
constraints::{
And, Constraint, FromBytes, Not, Operator, OperatorType, Or, OwnedBy, PubkeyMatch,
},
extensions::{
Attributes, Blob, ExtensionData, Grouping, Links, Manager, Metadata, Proxy, Royalties,
Attributes, Blob, Extension, ExtensionData, ExtensionType, Grouping, Links, Manager,
Metadata, Proxy, Royalties,
},
types::Creator,
JsonCreator,
};
use nifty_asset_types::{
constraints::{
And, Constraint, FromBytes, Not, Operator, OperatorType, Or, OwnedBy, PubkeyMatch,
},
extensions::{Extension, ExtensionType},
podded::ZeroCopy,
};
use podded::ZeroCopy;
use serde_json::{json, Value};

use super::*;
Expand Down

0 comments on commit dd9b292

Please sign in to comment.