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
|
[package]
name = "rustpython-common"
version = "0.2.0"
description = "General python functions and algorithms for use in RustPython"
authors = ["RustPython Team"]
edition = "2021"
repository = "https://github.com/RustPython/RustPython"
license = "MIT"
[features]
threading = ["parking_lot"]
[dependencies]
ascii = "1.0"
bitflags = "1.3.2"
cfg-if = "1.0"
hexf-parse = "0.2.1"
itertools = "0.10.3"
lexical-parse-float = { version = "0.8.0", features = ["format"] }
libc = "0.2.133"
lock_api = "0.4"
num-bigint = "0.4.2"
num-complex = "0.4.0"
num-traits = "0.2"
once_cell = "1.4.1"
parking_lot = { version = "0.12.0", optional = true }
radium = "0.7"
rand = "0.8"
siphasher = "0.3"
unic-ucd-category = "0.9"
volatile = "0.3"
[target.'cfg(windows)'.dependencies]
widestring = "0.5.1"
|