-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
35 lines (29 loc) · 957 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "atomic-bomb-engine-py"
version = "0.41.3"
edition = "2021"
[lib]
name = "atomic_bomb_engine"
crate-type = ["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
atomic-bomb-engine = "0.41.1"
#atomic-bomb-engine = { git = "https://github.com/we-lsp/atomic-bomb-engine.git", branch = "ExponentialMovingAverage"}
tokio = "1.36.0"
pyo3-asyncio = { version = "0.20.0", features = ["tokio-runtime", "async-std"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = [] }
serde-pyobject = "0.2.1"
async-std = "1.12.0"
async-stream = "0.3.5"
futures = "0.3.30"
tokio-stream = "0.1.15"
anyhow = "1.0.83"
[build]
rustflags = ["-C", "target-feature=+crt-static"]
[dependencies.pyo3]
version = "0.20.3"
features = ["extension-module", "auto-initialize"]
[tool.maturin]
name = "atomic_bomb_engine"
scripts = "python/atomic_bomb_engine"