mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 21:48:32 +00:00
dca3418bbd
Moves datasource, manager, platform and versioning code from lib/ into new lib/modules/ BREAKING CHANGE: External tools must update paths to datasource, manager, platform and versioning
42 lines
748 B
TOML
42 lines
748 B
TOML
[package]
|
|
name = "standard-tables-example"
|
|
version = "0.1.2"
|
|
|
|
[dependencies.dep1]
|
|
optional=true
|
|
path="./foo/bar"
|
|
default-features = true
|
|
version="1.2"
|
|
|
|
|
|
|
|
|
|
[dependencies.dep2]
|
|
optional=false
|
|
path="./foo/bar"
|
|
default-features= true
|
|
version ="3.4"
|
|
[dependencies.dep3]
|
|
version= "~12.3.1"
|
|
default-features= true
|
|
path ="./foo/bar"
|
|
|
|
[dependencies.dep4]
|
|
version= "INVALID 1.3.1 VERSION"
|
|
default-features= true
|
|
path ="./foo/bar"
|
|
|
|
[dependencies.dep5]
|
|
vesion = "1.2.3" # Intentional typo
|
|
default-features = true
|
|
path = "./foo/bar"
|
|
|
|
# [dependencies.dep6]
|
|
# version = "3.2.1"
|
|
# default-features = true
|
|
# path = "./foo/bar"
|
|
|
|
[dependencies.dep7]
|
|
vesion = "1.2.3" # Intentional typo
|
|
default-features = true
|