[package] name = "ironlog" version = "0.2.7" edition = "2021" license = "MIT" repository = "https://github.com/heety313/ironlog" description = "A web logger for multi-node system logging" build = "build.rs" default-run = "ironlog" [lib] name = "ironlog" path = "src/lib.rs" [[bin]] name = "ironlog" path = "src/bin/main.rs" [[example]] name = "example" path = "examples/example.rs" [dependencies] log = { version = "0.4.22", features = ["std"] } chrono = "0.4" rocket = { version = "0.5.0-rc.3", features = ["json"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tokio = { version = "1", features = ["full"] } once_cell = "1.8.0" include_dir = "0.7.3" rocket-include-dir = "1.1.0" sqlx = { version = "0.7", features = [ "sqlite", "runtime-tokio-native-tls", "macros", "runtime-tokio-rustls", ] } clap = { version = "4.0", features = ["derive"] }