[package]
edition = "2021"
rust-version = "1.71"
name = "pigs"
version = "0.1.2"
authors = ["HunLuanZhiZhu <zhuyihe@petalmail.com>"]
description = "一种面向函数和面向对象的编程语言 (A programming language oriented towards functional and object-oriented paradigms)"
documentation = "https://crates.io/crates/pigs"
readme = "README.md"
keywords = [
"programming",
"functional",
"object-oriented",
]
categories = [
"compilers",
"data-structures",
"development-tools::ffi",
]
license = "MIT OR Apache-2.0"
[lib]
name = "pigs"
crate-type = [
"rlib",
"cdylib",
"staticlib",
]
[dependencies.num-bigint]
version = "0.4.3"
features = [
"rand",
"std",
]
[dependencies.num-complex]
version = "0.4.3"
features = [
"rand",
"std",
]
[dependencies.pyo3]
version = "0.19.2"
features = [
"auto-initialize",
"num-complex",
"rust_decimal",
"num-bigint",
]
[dependencies.rand]
version = "0.8.5"
[dependencies.rayon]
version = "1.7.0"
features = []
[dependencies.rust_decimal]
version = "1.29.1"
features = [
"rand",
"std",
]