[package] name = "libts" version = "0.1.1" description = "Trade System library" authors = [ "Jesse Kuang " ] license = "Apache-2.0" homepage = "https://github.com/kjx98/libts-rust" documentation = "https://docs.rs/libts" readme = "README.md" keywords = [ "libts", "trade"] repository = "https://github.com/kjx98/libts-rust" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [profile.dev] opt-level = 2 [profile.release] strip = "debuginfo" [dependencies] log = { version = "0.4", features = ["max_level_debug", "release_max_level_warn"] } libc = "0.2" lazy_static = "1.4" serde = { version = "1.0", features = ["derive"] } [dev-dependencies] bencher = "0.1" rand = "0.4" [dependencies.simple_logger] version = "2.1" default-features = false features = ["timestamps", "colors"] [features] default = [ ] asm = [] tsc = [] [[bench]] name = "test" harness = false