26 lines
354 B
TOML
26 lines
354 B
TOML
[package]
|
|
name = "mapping"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "step-01"
|
|
path = "src/map/step_01.rs"
|
|
|
|
[[bin]]
|
|
name = "step-02"
|
|
path = "src/map/step_02.rs"
|
|
|
|
[[bin]]
|
|
name = "step-03"
|
|
path = "src/map/step_03.rs"
|
|
|
|
[[bin]]
|
|
name = "step-04"
|
|
path = "src/map/step_04.rs"
|
|
|
|
[dependencies]
|
|
sophia = "0.9"
|
|
oxigraph = "*"
|
|
mysql = "*"
|
|
urlencoding = "*"
|