forked from fastuuid/fastuuid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (39 loc) · 1.19 KB
/
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
36
37
38
39
40
41
42
43
44
[package]
name = "fastuuid"
version = "0.7.0"
authors = ["Omer Katz <[email protected]>"]
license = "BSD3"
description = "Python bindings to Rust's UUID library."
[lib]
name = "fastuuid"
crate-type = ["cdylib"]
[dependencies.pyo3]
version = "0.14.5"
features = ["extension-module"]
[dependencies.uuid]
version = "0.8.2"
features = ["v1", "v3", "v4", "v5"]
[package.metadata.maturin]
classifier = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Rust",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
maintainer = "Omer Katz"
maintainer-email = "[email protected]"
requires-python = ">=3.6"
project-url = { homepage = "https://github.com/thedrow/fastuuid/" }
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 3