Skip to content

Commit 05f1fcc

Browse files
committed
chore: bump version to 0.2.0
1 parent e7405c2 commit 05f1fcc

File tree

3 files changed

+1163
-17
lines changed

3 files changed

+1163
-17
lines changed

Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "titor"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
edition = "2021"
55
authors = ["Mufeed VH <mufeed@asterisk.so>"]
66
description = "A high-performance checkpointing library for time-travel through directory states"
@@ -46,10 +46,11 @@ num_cpus = "1.17"
4646
tokio = { version = "1.46", features = ["rt", "rt-multi-thread", "macros", "time", "fs", "sync"] }
4747

4848
# Progress reporting
49-
indicatif = { version = "0.18", optional = true }
49+
indicatif = "0.18"
5050

5151
# CLI
52-
clap = { version = "4.5", features = ["derive"], optional = true }
52+
clap = { version = "4.5", features = ["derive", "cargo"] }
53+
colored = "3.0"
5354

5455
# Logging
5556
tracing = "0.1"
@@ -76,18 +77,9 @@ rand = "0.9"
7677
tracing-test = "0.2"
7778
filetime = "0.2"
7879

79-
# CLI dependencies
80-
clap = { version = "4.5", features = ["derive", "cargo"] }
81-
colored = "3.0"
82-
indicatif = "0.18"
83-
84-
[profile.release]
85-
lto = true
86-
codegen-units = 1
87-
opt-level = 3
88-
89-
[profile.bench]
90-
inherits = "release"
80+
[[bin]]
81+
name = "titor"
82+
path = "src/bin/titor.rs"
9183

9284
[[example]]
9385
name = "titor_cli"
@@ -102,6 +94,14 @@ required-features = ["rmcp", "schemars"]
10294
name = "titor_bench"
10395
harness = false
10496

97+
[profile.release]
98+
lto = true
99+
codegen-units = 1
100+
opt-level = 3
101+
102+
[profile.bench]
103+
inherits = "release"
104+
105105
[package.metadata.docs.rs]
106106
# Build docs without gxhash to avoid CPU feature requirements
107107
no-default-features = true

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,13 @@ Add to your `Cargo.toml`:
9696

9797
```toml
9898
[dependencies]
99-
titor = "0.1.2"
99+
titor = "0.2.0"
100+
```
101+
102+
Or install the CLI tool with:
103+
104+
```bash
105+
cargo install titor
100106
```
101107

102108
### Dependencies
@@ -389,7 +395,10 @@ Titor includes a comprehensive command-line interface.
389395
### Installation
390396

391397
```bash
392-
cargo install titor-cli
398+
# Install the titor CLI from crates.io
399+
cargo install titor
400+
# Or install from local path
401+
cargo install --path .
393402
```
394403

395404
### Commands

0 commit comments

Comments
 (0)