migrants/Cargo.toml
Daniel Hernandez b4ed3cbde7 Add step-07: clean up secondary organisations and simplify person-profession
- Remove redundant tm:secondaryOrganisation when it equals org:organization (230)
- Promote tm:secondaryOrganisation to org:organization when no primary exists (256)
- Replace tm:PersonProfession intermediate class with direct schema:hasOccupation
  links from persons to schema:Occupation instances (742 instances removed)
- Remove tm:PersonProfession class and its properties from the ontology
- Add step-07 binary, Rakefile task, figures, and documentation
2026-03-01 15:48:51 +01:00

38 lines
516 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"
[[bin]]
name = "step-05"
path = "src/map/step_05.rs"
[[bin]]
name = "step-06"
path = "src/map/step_06.rs"
[[bin]]
name = "step-07"
path = "src/map/step_07.rs"
[dependencies]
sophia = "0.9"
oxigraph = "*"
mysql = "*"
urlencoding = "*"