Skip to content

Commit 033b4bb

Browse files
authored
Crates.io prep (#17)
* rename * use public crate * add metadata * fix license * fix categories
1 parent 5b7dabb commit 033b4bb

File tree

2 files changed

+43
-26
lines changed

2 files changed

+43
-26
lines changed

Cargo.lock

Lines changed: 25 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,28 @@
11
[package]
2-
name = "basalt"
2+
name = "basalt-cli"
33
version = "1.0.0"
44
edition = "2021"
5+
description = "CLI for managing Basalt competitions and configurations"
6+
authors = ["Jack Branch", "funnyboy-roks <[email protected]>"]
7+
repository = "https://github.com/basalt-rs/basalt-cli"
8+
license = "GPL-3.0-only"
9+
keywords = ["basalt", "cli", "competition", "configuration", "pdf"]
10+
categories = [
11+
"command-line-utilities",
12+
"virtualization",
13+
"development-tools::build-utils",
14+
"config",
15+
]
16+
exclude = [".github"]
17+
18+
[[bin]]
19+
name = "basalt"
20+
path = "src/main.rs"
521

622
[dependencies]
723
anyhow = "1.0.95"
824
clap = { version = "4.5.27", features = ["derive"] }
9-
bedrock = { git = "http://github.com/basalt-rs/bedrock.git", tag = "v1.0.0", features = [
25+
bedrock = { package = "basalt-bedrock", version = "1.0.0", features = [
1026
"tokio",
1127
] }
1228
tokio = { version = "1.47.1", features = ["full"] }

0 commit comments

Comments
 (0)