Skip to content

Commit e5e3cb8

Browse files
committed
rename package
1 parent 03ed6de commit e5e3cb8

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "roy"
2+
name = "roy-cli"
33
version = "0.1.0"
44
edition = "2021"
55
license = "MIT"
@@ -35,3 +35,7 @@ hyper = { version = "0.14", features = ["full"] }
3535
[[test]]
3636
name = "chat_completions"
3737
path = "tests/chat_completions.rs"
38+
39+
[[bin]]
40+
name = "roy"
41+
path = "src/main.rs"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-License-Identifier: MIT
33

44
use clap::Parser;
5-
use roy::{run, Args};
5+
use roy_cli::{run, Args};
66

77
#[tokio::main]
88
async fn main() -> anyhow::Result<()> {

0 commit comments

Comments
 (0)