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