22 lines
513 B
TOML
22 lines
513 B
TOML
[package]
|
|
name = "shoal-types"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Shoal Team"]
|
|
|
|
[dependencies]
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
thiserror = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
mtp = { git = "https://git@git.methanium.net/methanium/mtp.git", features = [
|
|
"crypto",
|
|
] }
|
|
tokio = "1"
|
|
async-trait = "0.1"
|
|
url = "2"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
tempfile = "3"
|