nf-ndc-connect-public 0.2.1__tar.gz → 0.2.2__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.
@@ -86,8 +86,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
86
86
  checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
87
87
  dependencies = [
88
88
  "cfg-if",
89
+ "js-sys",
89
90
  "libc",
90
91
  "wasi",
92
+ "wasm-bindgen",
91
93
  ]
92
94
 
93
95
  [[package]]
@@ -190,9 +192,10 @@ dependencies = [
190
192
 
191
193
  [[package]]
192
194
  name = "nf_ndc_connect_public"
193
- version = "0.2.1"
195
+ version = "0.2.2"
194
196
  dependencies = [
195
197
  "chrono",
198
+ "getrandom",
196
199
  "jsonwebtoken",
197
200
  "pyo3",
198
201
  "serde",
@@ -1,14 +1,17 @@
1
1
  [package]
2
2
  name = "nf_ndc_connect_public"
3
- version = "0.2.1"
3
+ version = "0.2.2"
4
4
  edition = "2024"
5
+ description = "Shared IDP Claims & Auth Logic for Rust, Python (Maturin), and Wasm (Wasm-Pack)"
6
+ license = "MIT"
7
+ repository = "https://github.com/NuFlights/nf_ndc_connect_public"
5
8
  readme = "README.md"
9
+ # ---------------------------------------------
6
10
 
7
11
  [lib]
8
12
  crate-type = ["cdylib", "rlib"]
9
13
 
10
14
  [features]
11
- # Default to neither to allow pure Rust usage
12
15
  default = []
13
16
  python = ["dep:pyo3"]
14
17
  wasm = ["dep:wasm-bindgen", "dep:serde-wasm-bindgen"]
@@ -21,3 +24,5 @@ wasm-bindgen = { version = "0.2.108", optional = true }
21
24
  serde-wasm-bindgen = { version = "0.6.5", optional = true }
22
25
  jsonwebtoken = "10.2.0"
23
26
  chrono = "0.4.43"
27
+ getrandom = { version = "0.2", features = ["js"] }
28
+ # ----------------------------------------------------
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nf_ndc_connect_public
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Add your description here
5
5
  Author-email: dhilipsiva <dhilipsiva@pm.me>
6
6
  Requires-Python: >=3.8
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "nf_ndc_connect_public"
3
- version = "0.2.1"
3
+ version = "0.2.2"
4
4
  description = "Add your description here"
5
5
  authors = [
6
6
  { name = "dhilipsiva", email = "dhilipsiva@pm.me" }