Cargo.toml
1 [package] 2 name = "alphastd-timed" 3 version = "0.2.0" 4 authors = [ "Alpha-Delta Network <dev@ac-dc.network>" ] 5 description = "A profiler to conveniently time function executions" 6 license = "Apache-2.0" 7 edition = "2021" 8 9 [lib] 10 proc-macro = true 11 12 [dependencies] 13 proc-macro2 = { version = "1" } 14 quote = { version = "1" } 15 syn = { version = "1", features = ["full", "extra-traits"] } 16 17 [features] 18 default = [] 19 timed = []