Skip to content

Commit e634e74

Browse files
authored
chore: re-export fastnum and update crate version (#102)
`fastnum` is now included to support the `BigInt` type via `fastnum::I512`. Updated the version in `Cargo.toml` from `4.0.0-rc` to `4.0.0-rc1` to reflect the changes.
1 parent e076788 commit e634e74

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uniswap-sdk-core"
3-
version = "4.0.0-rc"
3+
version = "4.0.0-rc1"
44
edition = "2021"
55
authors = ["malik <aremumalik05@gmail.com>", "Shuhui Luo <twitter.com/aureliano_law>"]
66
description = "The Uniswap SDK Core in Rust provides essential functionality for interacting with the Uniswap decentralized exchange"

src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ pub mod prelude {
4949
pub use alloc::{string::String, vec::Vec};
5050
pub use alloy_primitives::{map::rustc_hash::FxHashMap, Address, Bytes, B256, U256};
5151
pub use bnum;
52+
pub use fastnum;
5253
pub use num_integer::Integer;
5354

5455
pub type BigInt = fastnum::I512;

0 commit comments

Comments
 (0)