-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 718 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "algorithmics_utils"
version = "0.1.1"
authors = ["FooKaDoO"]
edition = "2021"
description = "Python module to learn"
documentation = "https://github.com/FooKaDoO/Algorithmics-test-utils/"
readme = "README.md"
homepage = "https://github.com/FooKaDoO/Algorithmics-test-utils/"
repository = "https://github.com/FooKaDoO/Algorithmics-test-utils/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "algorithmics_utils"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.21.2", features = ["extension-module"] }
rand = "0.8.5"
[tool.maturin]
features = ["pyo3/extension-module"]
compatibility = "linux"
sdist-include = ["README.md"]