blob: e7a75f93bc62835d9a451eacdf1f4319534acbc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[package]
name = "mullvad-version"
description = """
Computes the Mullvad VPN app product version. This crate is the single source of truth for
what version string a build should have. This crate is responsible for computing the
`-dev-$git_hash` suffix as well as transforming the version into semver, Android versionCode
and other formats.
"""
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[dependencies]
regex-lite = "0.1"
serde = { workspace = true, optional = true }
|