22 lines
477 B
TOML
22 lines
477 B
TOML
[package]
|
|
name = "ripgrib"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
#
|
|
[lib]
|
|
name = "pyo3_example"
|
|
|
|
# "cdylib" is necessary to produce a shared library for Python to import from.
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
nom = "7.1.1"
|
|
chrono = "0.4"
|
|
bitflags = "1.3.2"
|
|
lazy_static = "1.4.0"
|
|
pyo3 = { version = "0.17.3", features = ["extension-module"] }
|
|
numpy = "0.17"
|
|
ibmfloat = "0.1.1"
|