aboutsummaryrefslogtreecommitdiffhomepage
path: root/Cargo.toml
blob: 6aeddda4f795691118030ba4bdf3605d010ef860 (plain)
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
[workspace]
resolver = "3"
members = ["crates/*"]

[workspace.package]
version = "0.0.1"
edition = "2024"

[workspace.dependencies]
shirabe = { path = "crates/shirabe" }
shirabe-class-map-generator = { path = "crates/shirabe-class-map-generator" }
shirabe-external-packages = { path = "crates/shirabe-external-packages" }
shirabe-php-shim = { path = "crates/shirabe-php-shim" }
shirabe-semver = { path = "crates/shirabe-semver" }
anyhow = "1.0.102"
async-trait = "0.1.89"
base64 = "0.22.1"
chrono = { version = "0.4.44", features = ["serde"] }
fastrand = "2.4.1"
indexmap = { version = "2.14.0", features = ["serde"] }
md5 = "0.7.0"
regex = "1.12.3"
reqwest = "0.13.4"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149", features = ["preserve_order"] }
serde_urlencoded = "0.7.1"
serial_test = "3.5.0"
sha1 = "0.11.0"
sha2 = "0.11.0"
tempfile = "3.27.0"
tokio = { version = "1.52.3", features = ["full"] }
twox-hash = "2.1.2"
url = "2.5.8"
zip = "8.6.0"

[workspace.lints.rust]
async_fn_in_trait = "allow"
unused = "allow"