aboutsummaryrefslogtreecommitdiff
path: root/tools/tscn-to-bsn/Cargo.toml
blob: eaa4e07ec099d185255b127bb2bfb384245df415 (plain) (blame)
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
[package]
name = "tscn-to-bsn"
version = "0.1.0"
edition = "2024"

[[bin]]
name = "tscn2bsn"
path = "src/bin/tscn2bsn.rs"

[dependencies]
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
ron = "0.12.2"

[dependencies.mingling]
git = "https://github.com/mingling-rs/mingling"
rev = "08e804e75478953aa656064ac25903858bf5ef64"
features = ["extras", "picker", "pathf"]

[build-dependencies.mingling]
git = "https://github.com/mingling-rs/mingling"
rev = "08e804e75478953aa656064ac25903858bf5ef64"
features = ["build", "pathf"]

[workspace]