[package]
edition = "2021"
name = "signinwithethereum"
version = "0.8.1"
authors = [
"Spruce Systems, Inc.",
"EthID.org",
]
build = false
exclude = [
"tests",
".github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of EIP-4361: Sign In With Ethereum"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/signinwithethereum/siwe-rs"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
all-features = true
[lib]
name = "signinwithethereum"
path = "src/lib.rs"
[dependencies.alloy]
version = "1"
features = [
"provider-http",
"sol-types",
"rpc-types",
"network",
]
optional = true
[dependencies.hex]
version = "0.4"
[dependencies.http]
version = "1.0.0"
[dependencies.iri-string]
version = "0.7"
[dependencies.k256]
version = "0.13"
features = [
"std",
"ecdsa",
]
default-features = false
[dependencies.rand]
version = "0.10"
[dependencies.serde]
version = "1.0.164"
optional = true
[dependencies.sha3]
version = "0.10.8"
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
features = [
"parsing",
"formatting",
]
[dependencies.typed-builder]
version = "0.23"
optional = true
[dev-dependencies.anyhow]
version = "1.0"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
version = "1.28.2"
features = [
"rt",
"macros",
"rt-multi-thread",
]