[package] name = "baobab_actor" version = "0.1.0" edition = "2021" [lib] name = "baobab_actor" # Can be different from package name, or same path = "src/lib.rs" crate-type = ["cdylib", "rlib"] [[bin]] name = "baobab-actor-tui" path = "cmd/terminal_ui_main.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] redis = { version = "0.25.0", features = ["tokio-comp"] } rhai = { version = "1.21.0", features = ["std", "sync", "decimal", "internals"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] } log = "0.4" env_logger = "0.10" clap = { version = "4.4", features = ["derive"] } uuid = { version = "1.6", features = ["v4", "serde"] } chrono = { version = "0.4", features = ["serde"] } toml = "0.8" thiserror = "1.0" async-trait = "0.1" # TUI dependencies anyhow = "1.0" crossterm = "0.28" ratatui = "0.28" hero_supervisor = { path = "../supervisor" } hero_job = { path = "../job" } heromodels = { git = "https://git.ourworld.tf/herocode/db.git" } heromodels_core = { git = "https://git.ourworld.tf/herocode/db.git" } heromodels-derive = { git = "https://git.ourworld.tf/herocode/db.git" } [features] default = ["calendar", "finance"] calendar = [] finance = [] flow = [] legal = [] projects = [] biz = []