[package] name = "cgc-single-threaded" version = "0.1.1" authors = ["Adel prokurov "] edition = "2018" description = "Compacting garbage collector" repository = "https://github.com/playXE/cgc" readme = "README.md" keywords = ["gc","garbage-collector"] license = "MIT" [dependencies] time = "0.2" fxhash = "0.2" log = "0.4" simple_logger = "1.6" smallvec = "1.4" [target.'cfg(target_family = "windows")'.dependencies] winapi = { version = "0.3", features = ["winuser","memoryapi","errhandlingapi","processthreadsapi","synchapi","sysinfoapi"] } kernel32-sys = "0.2" [target.'cfg(target_family = "unix")'.dependencies] libc = "0.2" [features] trace-gc = [] trace-gc-timings = [] default = []