27 lines
603 B
TOML
27 lines
603 B
TOML
[package]
|
|
name = "qubed"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
repository = "https://github.com/ecmwf/qubed"
|
|
|
|
[dependencies]
|
|
# rsfdb = {git = "https://github.com/ecmwf/rsfdb", branch = "develop"}
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
pyo3 = "0.25"
|
|
lasso = "0.7.3"
|
|
|
|
[package.metadata.maturin]
|
|
version-from-git = true
|
|
|
|
[lib]
|
|
name = "tree_traverser"
|
|
crate-type = ["cdylib"]
|
|
path = "./src/rust/lib.rs"
|
|
|
|
# [patch.'https://github.com/ecmwf/rsfdb']
|
|
# rsfdb = { path = "../rsfdb" }
|
|
|
|
# [patch.'https://github.com/ecmwf-projects/rsfindlibs']
|
|
# rsfindlibs = { path = "../rsfindlibs" }
|