-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
31 lines (27 loc) · 839 Bytes
/
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
[package]
name = "ethnum"
version = "1.5.0"
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 = ["serde"]
[workspace]
members = [
"bench",
"fuzz",
"intrinsics",
]
[features]
llvm-intrinsics = ["ethnum-intrinsics"]
macros = [] # deprecated
[dependencies]
ethnum-intrinsics = { version = "=1.2.0", path = "intrinsics", optional = true }
serde = { version = "1", default-features = false, optional = true }