[package]
edition = "2021"
name = "expman"
version = "0.2.1"
authors = ["Lokesh Mohanty <lokesh1197@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance experiment manager with Rust backend (CLI and library)"
homepage = "https://github.com/lokeshmohanty/expman-rs"
documentation = "https://docs.rs/expman"
readme = "README.md"
license = "MIT"
repository = "https://github.com/lokeshmohanty/expman-rs"
[lib]
name = "expman"
path = "src/lib.rs"
[[bin]]
name = "expman"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = [
"derive",
"color",
]
[dependencies.comfy-table]
version = "7"
[dependencies.expman-core]
version = "0.2.1"
[dependencies.expman-server]
version = "0.2.1"
[dependencies.indicatif]
version = "0.17"
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]