forked from odilia-app/odilia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
69 lines (62 loc) · 2.52 KB
/
Cargo.toml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "odilia"
version = "0.0.1"
authors = ["Michael Connor Buchan <[email protected]>", "Tait Hoyem <[email protected]>", "Alberto Tirla <[email protected]>"]
description = "Building a better screen reader for the Linux desktop, one step at a time."
license = "gpl-3" # Not gpl-3-or-later
readme = "README.md"
repository = "https://github.com/odilia-app/odilia"
homepage = "https://odilia.app"
keywords = ["screen-reader", "accessibility", "a11y", "tts", "linux"]
categories = ["accessibility"]
edition = "2021"
publish = false
[package.metadata.release]
# The root crate should be released
release = true
# Update the CHANGELOG
pre-release-replacements = [
{file="CHANGELOG.md", search="Unreleased", replace="{{version}}"},
{file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1},
{file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}"},
{file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n\n## [Unreleased] - ReleaseDate", exactly=1},
{file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n[Unreleased]: https://github.com/odilia-app/odilia/compare/{{tag_name}}...HEAD", exactly=1},
]
# Note: we don't need to specify any members here because they're all path dependencies of the main crate
[workspace]
[profile.release]
lto = "thin"
[workspace.metadata.release]
allow-branch = ["main"]
# By default, crates will not be released or published
# These are overridden on a crate-by-crate basis
release = false
publish = false
shared-version = true
consolidate-commits = true
consolidate-pushes = true
pre-release-commit-message = "Release Odilia version {{version}}"
post-release-commit-message = "Post release version bump: version {{next_version}}"
tag-message = "{{crate_name}} version {{version}}"
dev-version-ext = "dev"
dev-version = true
pre-release-hook = ["cargo", "fmt"]
dependent-version = "upgrade"
[dependencies]
atspi = { path = "atspi", default-features = false, features = ["tokio"] }
clap = { version = "3.1.8", features = ["derive", "wrap_help"] }
color-eyre = "0.6.1"
eyre = "0.6.8"
odilia-common = { path = "common" }
odilia-input = { path = "input" }
odilia-tts = { path = "tts" }
tokio = { version = "1.17.0", features = ["full", "parking_lot"] }
tracing = "0.1.32"
tracing-error = "0.2.0"
tracing-log = "0.1.2"
tracing-subscriber = { version = "0.3.10", features = ["env-filter", "parking_lot"] }
tracing-tree = "0.2.0"
[features]
#[build-dependencies]
#clap = { version = "3.1.8", features = ["derive"] }
#clap_complete = "3.1.1"