-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 1.14 KB
/
Copy pathCargo.toml
File metadata and controls
40 lines (34 loc) · 1.14 KB
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
[package]
name = "emval"
version = "0.1.13"
description = "emval is a blazingly fast email validator"
edition = "2021"
license = "MIT"
homepage = "https://github.com/bnkc/emval"
repository = "https://github.com/bnkc/emval"
readme = "README.md"
keywords = ["email", "validation"]
categories = ["email"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "emval"
crate-type = ["cdylib", "rlib"]
[dependencies]
pyo3 = { version = "=0.25.1", features = ["extension-module", "abi3-py38"] }
# emval dependencies
icu_normalizer = "2.0.0"
idna = "1.0.2"
lazy_static = "1.5.0"
regex = "1.10.5"
unicode-properties = "0.1.1"
rstest = "0.21.0"
unicode_names2 = "1.2.2"
tokio = { version = "1.21", default-features = false, features = ["rt", "rt-multi-thread"] }
trust-dns-resolver = "0.23.2"
# polars dependencies
pyo3-polars = { version = "0.22", features = ["derive", "dtype-struct"] }
polars = { version = "0.49.1", features = ["dtype-struct"], default-features = false }
polars-arrow = { version = "0.49.1", default-features = false }
serde = { version = "1", features = ["derive"] }
[profile.release]
lto = true