odeli/Cargo.toml
2024-03-07 19:30:49 -05:00

23 lines
561 B
TOML

[package]
name = "odeli"
version = "0.1.0"
edition = "2021"
authors = ["NGnius (Graham) <ngniusness@gmail.com>"]
repository = "https://git.ngni.us/NGnius/muss"
license = "GPLv3"
description = "Common shipment tracking library"
readme = "README.md"
[workspace]
members = [
"odeli-core",
"shipper/odeli-canadapost",
"shipper/odeli-ups",
]
[dependencies]
odeli-core = { version = "0.1", path = "./odeli-core" }
odeli-canadapost = { version = "0.1", path = "./shipper/odeli-canadapost" }
odeli-ups = { version = "0.1", path = "./shipper/odeli-ups" }