-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (46 loc) · 1.35 KB
/
Copy pathCargo.toml
File metadata and controls
52 lines (46 loc) · 1.35 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
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "stdbr"
version = "0.3.9"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
description.workspace = true
repository.workspace = true
homepage.workspace = true
readme.workspace = true
keywords.workspace = true
categories.workspace = true
include = ["/src/**", "/Cargo.toml", "/README.md", "/LICENSE"]
[dependencies]
stdbr-core = { path = "core", version = "0.3.9", default-features = false }
[features]
default = ["std", "municipio"]
municipio = ["stdbr-core/municipio"]
std = ["stdbr-core/std"]
[workspace]
resolver = "2"
members = ["core", "bindings/ffi-c", "bindings/nodejs", "bindings/python", "bindings/wasm", "tools/parity_gen"]
exclude = ["plugins/polars"]
[workspace.package]
version = "0.3.1"
edition = "2024"
rust-version = "1.85.0"
license = "Apache-2.0"
description = "Standard library for Brazil"
repository = "https://github.com/fullzer4/stdbr"
homepage = "https://github.com/fullzer4/stdbr"
readme = "README.md"
keywords = ["brazil", "cpf", "cnpj", "cep", "validation"]
categories = ["localization", "text-processing", "wasm"]
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[profile.release]
strip = true
panic = "abort"
codegen-units = 1
opt-level = "z"
lto = "thin"