fix: use path_macro in tests/codegen for cross-platform paths
This commit is contained in:
parent
394f8609a8
commit
64d009615e
25 changed files with 150 additions and 151 deletions
24
Cargo.toml
24
Cargo.toml
|
|
@ -30,25 +30,35 @@ fancy-regex = "0.10.0"
|
|||
thiserror = "1.0.36"
|
||||
url = "2.2.2"
|
||||
log = "0.4.17"
|
||||
reqwest = {version = "0.11.11", default-features = false, features = ["json", "gzip", "brotli", "stream"]}
|
||||
tokio = {version = "1.20.0", features = ["macros", "time", "fs", "process"]}
|
||||
reqwest = { version = "0.11.11", default-features = false, features = [
|
||||
"json",
|
||||
"gzip",
|
||||
"brotli",
|
||||
"stream",
|
||||
] }
|
||||
tokio = { version = "1.20.0", features = ["macros", "time", "fs", "process"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0.82"
|
||||
serde_with = {version = "2.0.0", features = ["json"] }
|
||||
serde_with = { version = "2.0.0", features = ["json"] }
|
||||
rand = "0.8.5"
|
||||
time = {version = "0.3.15", features = ["macros", "serde", "serde-well-known"]}
|
||||
time = { version = "0.3.15", features = [
|
||||
"macros",
|
||||
"serde",
|
||||
"serde-well-known",
|
||||
] }
|
||||
futures = "0.3.21"
|
||||
indicatif = "0.17.0"
|
||||
filenamify = "0.1.0"
|
||||
ress = "0.11.4"
|
||||
phf = "0.11.1"
|
||||
phf = "0.11.1"
|
||||
base64 = "0.13.0"
|
||||
quick-xml = {version = "0.26.0", features = ["serialize"], optional = true}
|
||||
quick-xml = { version = "0.26.0", features = ["serialize"], optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.10.0"
|
||||
test-log = "0.2.11"
|
||||
rstest = "0.16.0"
|
||||
temp_testdir = "0.2.3"
|
||||
insta = {version = "1.17.1", features = ["ron", "redactions"]}
|
||||
insta = { version = "1.17.1", features = ["ron", "redactions"] }
|
||||
path_macro = "1.0.0"
|
||||
velcro = "0.5.3"
|
||||
|
|
|
|||
Reference in a new issue