odeli/Cargo.toml

23 lines
561 B
TOML
Raw Permalink Normal View History

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