-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated cargo clippy fix for starknet-ff, starknet-macros, starknet-p…
…roviders and starknet-signers
- Loading branch information
1 parent
18c5b84
commit bcc926b
Showing
20 changed files
with
1,233 additions
and
72 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
[package] | ||
name = "starknet-ff" | ||
version = "0.3.7" | ||
authors = ["Jonathan LEI <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
readme = "README.md" | ||
repository = "https://github.com/xJonathanLEI/starknet-rs" | ||
homepage = "https://starknet.rs/" | ||
description = """ | ||
Starknet field element type | ||
""" | ||
keywords = ["ethereum", "starknet", "web3", "no_std"] | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
|
||
[dependencies] | ||
ark-ff = { version = "0.4.2", default-features = false } | ||
crypto-bigint = { version = "0.5.1", default-features = false } | ||
hex = { version = "0.4.3", default-features = false } | ||
serde = { version = "1.0.160", optional = true, default-features = false } | ||
bigdecimal = { version = "0.3.0", optional = true } | ||
num-bigint = { version = "0.4.3", optional = true, default-features = false } | ||
|
||
|
||
[features] | ||
default = ["std", "serde"] | ||
std = [] | ||
alloc = ["serde?/alloc"] | ||
serde = ["dep:serde", "alloc", "bigdecimal?/serde"] | ||
bigdecimal = ["std", "dep:bigdecimal", "dep:num-bigint"] | ||
|
||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
getrandom = { version = "0.2.9", features = ["js"] } | ||
|
||
[target.'cfg(target_arch = "wasm32")'.dev-dependencies] | ||
wasm-bindgen-test = "0.3.34" | ||
|
||
[lints] | ||
workspace = true |
Oops, something went wrong.