[package] name = "simplest-logger" description = "Ultra-simple logger with a focus on performance. No bells or whistles, just a fast simple no-fuss logger." version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://codeberg.org/tryoxiss/simplest-logger" autotests = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] crate-type = ["cdylib"] # what? bench = true path = "source/lib.rs" # [[test]] # name = "integration" # path = "tests/lib.rs" # [[bin]] # name = "logger-tests" # path = "source/main.rs" [dependencies] log = "0.4.20" # [dev-dependencies] # test = "0.1.0" # I don't know what version but this works