Skip to content

Commit

Permalink
Merge branch 'felt-to-bigint' into bool-to-felt
Browse files Browse the repository at this point in the history
  • Loading branch information
pefontana committed Dec 15, 2023
2 parents 4bc8a5d + ea4166a commit 7baf947
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,15 @@ As a crates.io dependency:

```toml
[dependencies]
stark-felt = "0.0.3"
stark-felt = "0.0.1"
```

As a git dependency:

```toml
[dependencies]
stark-felt = { git = "https://github.com/starknet-io/types-rs" }
starknet-types-core = { git = "https://github.com/starknet-io/types-rs.git", version = "0.0.1", default-features = false, features = ["serde"] }
```

## Build from source
Expand Down
4 changes: 3 additions & 1 deletion crates/starknet-types-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ arbitrary = { version = "1.3.0", optional = true, default-features = false }
num-traits = { version = "0.2.16", default-features = false }
num-bigint = {version = "0.4.4", default-features = false}
num-integer = {version = "0.1.45", default-features = false}
lazy_static = { version = "1.4.0", default-features = false }
lazy_static = { version = "1.4.0", default-features = false, features = [
"spin_no_std",
] }

[features]
default = ["std", "serde", "curve"]
Expand Down

0 comments on commit 7baf947

Please sign in to comment.