blob: 85cdcd9ff336823dd3c55f3c2ebc6dcae053ce83 (
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
|
[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"] }
indexmap = { version = "2.14.0", features = ["serde"] }
md5 = "0.7.0"
regex = "1.12.3"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149", features = ["preserve_order"] }
sha1 = "0.10.6"
tokio = "1.52.3"
url = "2.5.8"
zip = "8.6.0"
[workspace.lints.rust]
warnings = "allow"
|