Skip to content

Commit

Permalink
clean up features
Browse files Browse the repository at this point in the history
  • Loading branch information
njelich committed Feb 14, 2024
1 parent e78e06a commit fdfa24b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions near-sdk-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ Main macro of the library for writing NEAR smart contracts.
proc-macro = true

[dependencies]
proc-macro2 = "1"
syn = { version = "2", features = ["full", "fold", "extra-traits", "visit"] }
strum = "0.24"
proc-macro2 = { version = "1", default-features = false }
syn = { version = "2", default-features = false, features = [] }
strum = { version = "0.24", default-features = false }
strum_macros = "0.24"
quote = "1.0"
quote = { version = "1.0", default-features = false }
Inflector = { version = "0.11.4", default-features = false, features = [] }
darling = { version = "0.20.3" }
serde = { version = "1", features = ["derive"] }
darling = { version = "0.20.3", default-features = false }
serde = { version = "1", default-features = false, features = ["serde_derive"] }
serde_json = "1"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion near-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ near-abi = { version = "0.4.0", features = ["__chunked-entries"] }
symbolic-debuginfo = "8.8"

[features]
default = ["wee_alloc", "unit-testing", "legacy", "abi"]
default = ["wee_alloc", "unit-testing"]
expensive-debug = []
unstable = []
legacy = []
Expand Down

0 comments on commit fdfa24b

Please sign in to comment.