forked from nlordell/ethnum-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (41 loc) · 1.35 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "ethnum"
version = "1.3.2"
authors = ["Nicholas Rodrigues Lordello <[email protected]>"]
edition = "2021"
description = "256-bit integer implementation"
documentation = "https://docs.rs/ethnum"
readme = "README.md"
homepage = "https://github.com/nlordell/ethnum-rs"
repository = "https://github.com/nlordell/ethnum-rs"
license = "MIT OR Apache-2.0"
keywords = ["integer", "u256", "ethereum"]
categories = ["cryptography::cryptocurrencies", "mathematics", "no-std"]
[package.metadata.docs.rs]
features = ["macros", "serde"]
[workspace]
members = [
"bench",
"fuzz",
"intrinsics",
"macros",
]
[features]
default = []
llvm-intrinsics = ["ethnum-intrinsics"]
macros = ["ethnum-macros"]
# Custom additions
arbitrary = ["dep:arbitrary", "std"]
serde = ["dep:serde"]
borsh = ["dep:borsh"]
cosmos = ["dep:cosmwasm-std"]
proptest = ["dep:proptest", "std"]
std = []
[dependencies]
ethnum-intrinsics = { version = "=1.1.0", path = "intrinsics", optional = true }
ethnum-macros = { version = "=1.1.0", path = "macros", optional = true }
serde = { version = "1.0.162", default-features = false, optional = true }
cosmwasm-std = { package = "secret-cosmwasm-std", version = "1.0.0", optional = true }
borsh = { version = "0.10.3", optional = true }
arbitrary = { version = "1.3.0", features = ["derive"], optional = true }
proptest = { version = "1.0", optional = true }