drift-core-python 0.1.3__tar.gz → 0.1.4__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 (22) hide show
  1. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/Cargo.lock +3 -3
  2. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/Cargo.toml +1 -1
  3. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/PKG-INFO +1 -1
  4. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/pyproject.toml +1 -1
  5. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/bindings/python/.gitignore +0 -0
  6. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/bindings/python/Cargo.toml +0 -0
  7. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/bindings/python/src/api.rs +0 -0
  8. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/bindings/python/src/conversion.rs +0 -0
  9. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/bindings/python/src/error.rs +0 -0
  10. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/bindings/python/src/lib.rs +0 -0
  11. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/crates/drift-rust-core/Cargo.toml +0 -0
  12. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/crates/drift-rust-core/src/error.rs +0 -0
  13. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/crates/drift-rust-core/src/export_request_proto.rs +0 -0
  14. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/crates/drift-rust-core/src/hash.rs +0 -0
  15. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/crates/drift-rust-core/src/lib.rs +0 -0
  16. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/crates/drift-rust-core/src/normalize.rs +0 -0
  17. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/crates/drift-rust-core/src/payload.rs +0 -0
  18. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/crates/drift-rust-core/src/protobuf_struct.rs +0 -0
  19. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/crates/drift-rust-core/src/schema.rs +0 -0
  20. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/crates/drift-rust-core/src/span_proto.rs +0 -0
  21. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/crates/drift-rust-core/src/types.rs +0 -0
  22. {drift_core_python-0.1.3 → drift_core_python-0.1.4}/crates/drift-rust-core/tests/fixture_smoke.rs +0 -0
@@ -106,7 +106,7 @@ dependencies = [
106
106
 
107
107
  [[package]]
108
108
  name = "drift-rust-core"
109
- version = "0.1.3"
109
+ version = "0.1.4"
110
110
  dependencies = [
111
111
  "base64",
112
112
  "prost",
@@ -119,7 +119,7 @@ dependencies = [
119
119
 
120
120
  [[package]]
121
121
  name = "drift-rust-core-node"
122
- version = "0.1.3"
122
+ version = "0.1.4"
123
123
  dependencies = [
124
124
  "drift-rust-core",
125
125
  "napi",
@@ -130,7 +130,7 @@ dependencies = [
130
130
 
131
131
  [[package]]
132
132
  name = "drift-rust-core-python"
133
- version = "0.1.3"
133
+ version = "0.1.4"
134
134
  dependencies = [
135
135
  "drift-rust-core",
136
136
  "pyo3",
@@ -3,4 +3,4 @@ members = ["crates/drift-rust-core", "bindings/python"]
3
3
  resolver = "2"
4
4
 
5
5
  [workspace.package]
6
- version = "0.1.3"
6
+ version = "0.1.4"
@@ -1,5 +1,5 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: drift-core-python
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: Python bindings for drift-rust-core
5
5
  Requires-Python: >=3.9
@@ -4,7 +4,7 @@ build-backend = "maturin"
4
4
 
5
5
  [project]
6
6
  name = "drift-core-python"
7
- version = "0.1.3"
7
+ version = "0.1.4"
8
8
  description = "Python bindings for drift-rust-core"
9
9
  requires-python = ">=3.9"
10
10