stdbr 0.2.0__tar.gz → 0.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. {stdbr-0.2.0 → stdbr-0.3.0}/Cargo.lock +7 -7
  2. {stdbr-0.2.0 → stdbr-0.3.0}/PKG-INFO +1 -1
  3. {stdbr-0.2.0 → stdbr-0.3.0}/bindings/python/Cargo.toml +1 -1
  4. {stdbr-0.2.0 → stdbr-0.3.0}/core/Cargo.toml +1 -1
  5. {stdbr-0.2.0 → stdbr-0.3.0}/pyproject.toml +1 -1
  6. {stdbr-0.2.0 → stdbr-0.3.0}/Cargo.toml +0 -0
  7. {stdbr-0.2.0 → stdbr-0.3.0}/README.md +0 -0
  8. {stdbr-0.2.0 → stdbr-0.3.0}/bindings/python/BUILD.bazel +0 -0
  9. {stdbr-0.2.0 → stdbr-0.3.0}/bindings/python/README.md +0 -0
  10. {stdbr-0.2.0 → stdbr-0.3.0}/bindings/python/src/cep.rs +0 -0
  11. {stdbr-0.2.0 → stdbr-0.3.0}/bindings/python/src/cnpj.rs +0 -0
  12. {stdbr-0.2.0 → stdbr-0.3.0}/bindings/python/src/cpf.rs +0 -0
  13. {stdbr-0.2.0 → stdbr-0.3.0}/bindings/python/src/lib.rs +0 -0
  14. {stdbr-0.2.0 → stdbr-0.3.0}/bindings/python/src/municipio.rs +0 -0
  15. {stdbr-0.2.0 → stdbr-0.3.0}/bindings/python/src/rg.rs +0 -0
  16. {stdbr-0.2.0 → stdbr-0.3.0}/bindings/python/src/uf.rs +0 -0
  17. {stdbr-0.2.0 → stdbr-0.3.0}/bindings/python/stdbr.pyi +0 -0
  18. {stdbr-0.2.0 → stdbr-0.3.0}/bindings/python/test_parity.py +0 -0
  19. {stdbr-0.2.0 → stdbr-0.3.0}/core/BUILD.bazel +0 -0
  20. {stdbr-0.2.0 → stdbr-0.3.0}/core/README.md +0 -0
  21. {stdbr-0.2.0 → stdbr-0.3.0}/core/src/cep.rs +0 -0
  22. {stdbr-0.2.0 → stdbr-0.3.0}/core/src/cnpj.rs +0 -0
  23. {stdbr-0.2.0 → stdbr-0.3.0}/core/src/cpf.rs +0 -0
  24. {stdbr-0.2.0 → stdbr-0.3.0}/core/src/lib.rs +0 -0
  25. {stdbr-0.2.0 → stdbr-0.3.0}/core/src/municipio.rs +0 -0
  26. {stdbr-0.2.0 → stdbr-0.3.0}/core/src/rand.rs +0 -0
  27. {stdbr-0.2.0 → stdbr-0.3.0}/core/src/rg.rs +0 -0
  28. {stdbr-0.2.0 → stdbr-0.3.0}/core/src/uf.rs +0 -0
  29. {stdbr-0.2.0 → stdbr-0.3.0}/core/src/util.rs +0 -0
  30. {stdbr-0.2.0 → stdbr-0.3.0}/core/tests/parity.rs +0 -0
@@ -267,7 +267,7 @@ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
267
267
 
268
268
  [[package]]
269
269
  name = "parity-gen"
270
- version = "0.2.0"
270
+ version = "0.3.0"
271
271
  dependencies = [
272
272
  "serde_json",
273
273
  "stdbr-core",
@@ -513,28 +513,28 @@ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
513
513
 
514
514
  [[package]]
515
515
  name = "stdbr"
516
- version = "0.2.0"
516
+ version = "0.3.0"
517
517
  dependencies = [
518
518
  "stdbr-core",
519
519
  ]
520
520
 
521
521
  [[package]]
522
522
  name = "stdbr-core"
523
- version = "0.2.0"
523
+ version = "0.3.0"
524
524
  dependencies = [
525
525
  "serde_json",
526
526
  ]
527
527
 
528
528
  [[package]]
529
529
  name = "stdbr-ffi"
530
- version = "0.2.0"
530
+ version = "0.3.0"
531
531
  dependencies = [
532
532
  "stdbr-core",
533
533
  ]
534
534
 
535
535
  [[package]]
536
536
  name = "stdbr-napi"
537
- version = "0.2.0"
537
+ version = "0.3.0"
538
538
  dependencies = [
539
539
  "napi",
540
540
  "napi-build",
@@ -544,7 +544,7 @@ dependencies = [
544
544
 
545
545
  [[package]]
546
546
  name = "stdbr-python"
547
- version = "0.2.0"
547
+ version = "0.3.0"
548
548
  dependencies = [
549
549
  "pyo3",
550
550
  "stdbr-core",
@@ -552,7 +552,7 @@ dependencies = [
552
552
 
553
553
  [[package]]
554
554
  name = "stdbr-wasm"
555
- version = "0.2.0"
555
+ version = "0.3.0"
556
556
  dependencies = [
557
557
  "stdbr-core",
558
558
  "wasm-bindgen",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: stdbr
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: 3
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "stdbr-python"
3
- version = "0.2.0"
3
+ version = "0.3.0"
4
4
  edition.workspace = true
5
5
  rust-version.workspace = true
6
6
  license.workspace = true
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "stdbr-core"
3
- version = "0.2.0"
3
+ version = "0.3.0"
4
4
  edition.workspace = true
5
5
  rust-version.workspace = true
6
6
  license.workspace = true
@@ -4,7 +4,7 @@ build-backend = "maturin"
4
4
 
5
5
  [project]
6
6
  name = "stdbr"
7
- version = "0.2.0"
7
+ version = "0.3.0"
8
8
  description = "Standard library for Brazil"
9
9
  readme = "README.md"
10
10
  license = "MIT OR Apache-2.0"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes