[package] name = "aigpt" version = "0.1.0" edition = "2021" description = "AI.GPT - Autonomous transmission AI with unique personality (Rust implementation)" authors = ["syui"] [[bin]] name = "aigpt" path = "src/main.rs" [[bin]] name = "test-config" path = "src/bin/test_config.rs" [dependencies] clap = { version = "4.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tokio = { version = "1.0", features = ["full"] } chrono = { version = "0.4", features = ["serde", "std"] } chrono-tz = "0.8" uuid = { version = "1.0", features = ["v4"] } anyhow = "1.0" colored = "2.0" dirs = "5.0" reqwest = { version = "0.11", features = ["json"] } url = "2.4" rustyline = "14.0" axum = "0.7" tower = "0.4" tower-http = { version = "0.5", features = ["cors"] } hyper = "1.0"