Skip to content

Commit

Permalink
chore: update Cargo.toml to fix openssl-sys issue in Github CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
nkaz001 committed Aug 7, 2024
1 parent ab165cf commit 53948ee
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions py-hftbacktest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@ name = "py-hftbacktest"
version = "0.1.0"
edition = "2021"

[lib]
name = "hftbacktest"
crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.22.1", features = ["extension-module"] }
hftbacktest = { path = "../hftbacktest", features = ["backtest"] }
hftbacktest-derive = { path = "../hftbacktest-derive" }

[lib]
name = "hftbacktest"
crate-type = ["cdylib"]
[dependencies.openssl-sys]
version = "0.9"
features = ["vendored"]

0 comments on commit 53948ee

Please sign in to comment.