blahrs/blah-types/Cargo.toml
oxalica b97ce5f29c
Some checks are pending
CI / Code style (push) Waiting to run
CI / Test beta (push) Waiting to run
CI / Test stable (push) Waiting to run
CI / Flake package (push) Waiting to run
Deploy OpenAPI doc to Pages / deploy (push) Waiting to run
build(deps): update dependencies
This includes:
- mock_instant 0.5 -> 0.6
- rstest 0.24 -> 0.26
- rusqlite 0.34 -> 0.37
- schemars 0.8 -> 1.0
- serde-inline-default 0.2 -> 1.0
- tokio-tungstenite 0.26 -> 0.27

Only schemars update needs some minor code changes.
2025-09-10 21:10:49 -04:00

51 lines
1.1 KiB
TOML

[package]
name = "blah-types"
version = "0.0.0"
edition = "2024"
[features]
default = ["ed25519-dalek/default"]
schemars = ["dep:schemars"]
rusqlite = ["dep:rusqlite"]
unsafe_use_mock_instant_for_testing = ["dep:mock_instant"]
[[bench]]
name = "crypto_ops"
harness = false
[dependencies]
bitflags = "2"
ed25519-dalek = { version = "2", default-features = false }
hex = { version = "0.4", features = ["serde"] }
html-escape = "0.2"
rand = { version = "0.9", default-features = false, features = ["thread_rng"] }
serde = { version = "1", features = ["derive"] }
serde_jcs = "0.1"
serde_json = "1"
thiserror = "2"
url = { version = "2", features = ["serde"] }
[dependencies.rusqlite]
version = "0.37"
optional = true
[dependencies.schemars]
version = "1"
optional = true
features = ["url2"]
[dependencies.mock_instant]
version = "0.6"
optional = true
[dev-dependencies]
criterion = "0.7"
ed25519-dalek = { version = "2", features = ["rand_core"] }
expect-test = "1"
# WAIT: https://github.com/dalek-cryptography/curve25519-dalek/issues/731
rand08 = { package = "rand", version = "0.8" }
sha2 = "0.10"
[lints]
workspace = true