Successful Implementation of history_logging
Build and Release / build-linux (push) Failing after 6s
Build and Release / build-windows (push) Failing after 5s
Build and Release / release (push) Has been skipped

This commit is contained in:
brotoskyj
2025-10-30 16:23:10 -04:00
parent 6285b574a6
commit e7702c5fdd
5 changed files with 205 additions and 13 deletions
+14 -1
View File
@@ -8,8 +8,21 @@ crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.27.0", features = ["extension-module", "generate-import-lib"] }
reqwest = "0.12.24"
reqwest = { version = "0.12.24", features = ["json", "native-tls"] }
serde = "1.0.228"
serde-pyobject = "0.8.0"
serde_json = "1.0.145"
tokio = { version = "1.48.0", features = ["full"] }
[package.metadata.maturin]
generate-abi-stubs = true
[profile.release]
opt-level = "z"
lto = "fat"
debug = false
codegen-units = 1
panic = 'abort'
strip = true
debug-assertions = false
overflow-checks = false