-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 1.12 KB
/
Copy pathCargo.toml
File metadata and controls
27 lines (23 loc) · 1.12 KB
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
[package]
edition = "2024"
name = "tzfpy"
repository = "https://github.com/ringsaturn/tzfpy"
version = "1.3.3"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
# The name of the native library. This is the name which will be used in Python to import the
# library (i.e. `import string_sum`). If you change this, you must also change the name of the
# `#[pymodule]` in `src/lib.rs`.
name = "tzfpy"
# "cdylib" is necessary to produce a shared library for Python to import from.
#
# Downstream Rust code (including code in `bin/`, `examples/`, and `tests/`) will not be able
# to `use string_sum;` unless the "rlib" or "lib" crate type is also included, e.g.:
# crate-type = ["cdylib", "rlib"]
crate-type = ["cdylib"]
[dependencies]
lazy_static = "1.5.0"
pyo3 = {version = "0.29.0", features = ["extension-module", "generate-import-lib", "abi3-py310"]}
# tzf-rs = { path = "../tzf-rs", features = ["export-geojson"]}
tzf-rs = { version = "1.3.7", features = ["export-geojson"]}
# tzf-rs = { git = "https://github.com/ringsaturn/tzf-rs", branch = "tzf-dist", features = ["export-geojson"]}