Commits on Source (16)
-
Jacob Lifshay authored
-
Jacob Lifshay authored
-
Jacob Lifshay authored
-
Jacob Lifshay authored
-
Jacob Lifshay authored
-
Jacob Lifshay authored
-
Jacob Lifshay authored
-
Jacob Lifshay authored
-
Jacob Lifshay authored
-
Jacob Lifshay authored
-
Jacob Lifshay authored
-
Jacob Lifshay authored
-
Jacob Lifshay authored
-
Jacob Lifshay authored
-
Jacob Lifshay authored
-
Jacob Lifshay authored
Showing
- .gitignore 3 additions, 0 deletions.gitignore
- Cargo.toml 15 additions, 1 deletionCargo.toml
- README.md 32 additions, 2 deletionsREADME.md
- pyproject.toml 9 additions, 0 deletionspyproject.toml
- rls.toml 1 addition, 0 deletionsrls.toml
- src/lib.rs 1 addition, 0 deletionssrc/lib.rs
- src/python.rs 290 additions, 0 deletionssrc/python.rs
- tests/__init__.py 2 additions, 0 deletionstests/__init__.py
- tests/test_real_algebraic_number.py 254 additions, 0 deletionstests/test_real_algebraic_number.py
... | ... | @@ -2,7 +2,7 @@ |
# See Notices.txt for copyright information | ||
[package] | ||
name = "algebraics" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
authors = ["Jacob Lifshay <programmerjake@gmail.com>"] | ||
edition = "2018" | ||
license = "LGPL-2.1-or-later" | ||
... | ... | @@ -12,6 +12,15 @@ repository = "https://salsa.debian.org/Kazan-team/algebraics" |
readme = "README.md" | ||
categories = ["algorithms", "data-structures", "science"] | ||
[features] | ||
default = [] | ||
python = ["pyo3"] | ||
python-extension = ["python", "pyo3/extension-module"] | ||
[lib] | ||
name = "algebraics" | ||
crate-type = ["rlib", "cdylib"] | ||
[dependencies] | ||
num-traits = "0.2" | ||
num-bigint = "0.2" | ||
... | ... | @@ -20,3 +29,8 @@ num-rational = "0.2" |
rand = "0.5" | ||
rand_pcg = "0.1.1" | ||
lazy_static = "1.4" | ||
[dependencies.pyo3] | ||
version = "0.8.2" | ||
optional = true | ||
features = ["num-bigint"] |
pyproject.toml
0 → 100644
rls.toml
0 → 100644
src/python.rs
0 → 100644
tests/__init__.py
0 → 100644
tests/test_real_algebraic_number.py
0 → 100644