-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (41 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
49 lines (41 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "odometer"
version = "0.6.1"
edition = "2021"
description = "A workspace version management tool that keeps package versions synchronized across projects"
license = "MIT"
repository = "https://github.com/levicook/odometer"
homepage = "https://github.com/levicook/odometer"
documentation = "https://github.com/levicook/odometer"
readme = "README.md"
keywords = ["workspace", "version", "cargo", "semver", "cli"]
categories = ["command-line-utilities", "development-tools"]
authors = ["Levi Cook <levicook@gmail.com>"]
[lib]
name = "odometer"
path = "src/lib.rs"
[[bin]]
name = "cargo-odometer"
path = "src/bin/cargo-odometer.rs"
[[bin]]
name = "cargo-odo"
path = "src/bin/cargo-odo.rs"
[[bin]]
name = "odometer"
path = "src/bin/odometer.rs"
[[bin]]
name = "odo"
path = "src/bin/odo.rs"
[dependencies]
anyhow = "1.0.98"
clap = { version = "4.5", features = ["derive"] }
ignore = "0.4"
json-patch = "4.0.0"
semver = "1.0.26"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml_edit = "0.22.27"
[features]
fixture-tests = []
[dev-dependencies]
tempfile = "3.20.0"