Add MIT license and refactor Cargo workspace configuration
This commit is contained in:
10
Cargo.toml
10
Cargo.toml
@@ -8,6 +8,16 @@ members = [
|
|||||||
]
|
]
|
||||||
exclude = []
|
exclude = []
|
||||||
|
|
||||||
|
[workspace.package]
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
authors = ["Owlibou"]
|
||||||
|
license = "MIT"
|
||||||
|
repository = "https://somegit.dev/Owlibou/owlen"
|
||||||
|
homepage = "https://somegit.dev/Owlibou/owlen"
|
||||||
|
keywords = ["llm", "tui", "cli", "ollama", "chat"]
|
||||||
|
categories = ["command-line-utilities"]
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
# Async runtime and utilities
|
# Async runtime and utilities
|
||||||
tokio = { version = "1.0", features = ["full"] }
|
tokio = { version = "1.0", features = ["full"] }
|
||||||
|
|||||||
21
LICENSE
Normal file
21
LICENSE
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2025 Owlibou
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
@@ -1,7 +1,11 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "owlen-cli"
|
name = "owlen-cli"
|
||||||
version = "0.1.0"
|
version.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
|
authors.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
description = "Command-line interface for OWLEN LLM client"
|
description = "Command-line interface for OWLEN LLM client"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ use ratatui::{backend::CrosstermBackend, Terminal};
|
|||||||
async fn main() -> Result<()> {
|
async fn main() -> Result<()> {
|
||||||
let matches = Command::new("owlen-code")
|
let matches = Command::new("owlen-code")
|
||||||
.about("OWLEN Code Mode - TUI optimized for programming assistance")
|
.about("OWLEN Code Mode - TUI optimized for programming assistance")
|
||||||
.version("0.2.0")
|
.version(env!("CARGO_PKG_VERSION"))
|
||||||
.arg(
|
.arg(
|
||||||
Arg::new("model")
|
Arg::new("model")
|
||||||
.short('m')
|
.short('m')
|
||||||
@@ -87,7 +87,7 @@ async fn run_app(
|
|||||||
session_rx: &mut mpsc::UnboundedReceiver<SessionEvent>,
|
session_rx: &mut mpsc::UnboundedReceiver<SessionEvent>,
|
||||||
) -> Result<()> {
|
) -> Result<()> {
|
||||||
loop {
|
loop {
|
||||||
terminal.draw(|f| ui::render_chat(f, app.inner()))?;
|
terminal.draw(|f| ui::render_chat(f, app.inner_mut()))?;
|
||||||
|
|
||||||
tokio::select! {
|
tokio::select! {
|
||||||
Some(event) = event_rx.recv() => {
|
Some(event) = event_rx.recv() => {
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ use ratatui::{backend::CrosstermBackend, Terminal};
|
|||||||
async fn main() -> Result<()> {
|
async fn main() -> Result<()> {
|
||||||
let matches = Command::new("owlen")
|
let matches = Command::new("owlen")
|
||||||
.about("OWLEN - A chat-focused TUI client for Ollama")
|
.about("OWLEN - A chat-focused TUI client for Ollama")
|
||||||
.version("0.2.0")
|
.version(env!("CARGO_PKG_VERSION"))
|
||||||
.arg(
|
.arg(
|
||||||
Arg::new("model")
|
Arg::new("model")
|
||||||
.short('m')
|
.short('m')
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "owlen-core"
|
name = "owlen-core"
|
||||||
version = "0.1.0"
|
version.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
|
authors.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
description = "Core traits and types for OWLEN LLM client"
|
description = "Core traits and types for OWLEN LLM client"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "owlen-ollama"
|
name = "owlen-ollama"
|
||||||
version = "0.1.0"
|
version.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
|
authors.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
description = "Ollama provider for OWLEN LLM client"
|
description = "Ollama provider for OWLEN LLM client"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "owlen-tui"
|
name = "owlen-tui"
|
||||||
version = "0.1.0"
|
version.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
|
authors.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
description = "Terminal User Interface for OWLEN LLM client"
|
description = "Terminal User Interface for OWLEN LLM client"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|||||||
Reference in New Issue
Block a user