-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (32 loc) · 899 Bytes
/
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
# SPDX-License-Identifier: LGPL-2.1-or-later
# See Notices.txt for copyright information
[package]
name = "simple-soft-float"
version = "0.2.0"
authors = ["Jacob Lifshay <programmerjake@gmail.com>"]
edition = "2018"
license = "LGPL-2.1-or-later"
description = "soft-float library that intends to be a straightforward reference implementation of IEEE 754"
readme = "README.md"
repository = "https://salsa.debian.org/Kazan-team/simple-soft-float"
[lib]
name = "simple_soft_float"
crate-type = ["rlib", "cdylib"]
[features]
default = []
python = ["pyo3", "once_cell"]
python-extension = ["python", "pyo3/extension-module"]
[dependencies]
num-bigint = "0.2"
num-integer = "0.1"
num-traits = "0.2"
num-rational = "0.2"
[dependencies.algebraics]
version = "0.2"
[dependencies.once_cell]
version = "1.2"
optional = true
[dependencies.pyo3]
version = "0.9.0"
optional = true
features = ["num-bigint"]