mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
18 lines
762 B
TOML
18 lines
762 B
TOML
[package]
|
|
name = "deltachat-contact-tools"
|
|
version = "0.0.0" # No semver-stable versioning
|
|
edition = "2021"
|
|
description = "Contact-related tools, like parsing vcards and sanitizing name and address. Meant for internal use in the deltachat crate."
|
|
license = "MPL-2.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
regex = { workspace = true }
|
|
rusqlite = { workspace = true } # Needed in order to `impl rusqlite::types::ToSql for EmailAddress`. Could easily be put behind a feature.
|
|
chrono = { workspace = true, features = ["alloc", "clock", "std"] }
|
|
|
|
[dev-dependencies]
|
|
anyhow = { workspace = true, features = ["backtrace"] } # Enable `backtrace` feature in tests.
|