14 lines
338 B
TOML
14 lines
338 B
TOML
[package]
|
|
name = "chrs-sync"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
chrs-mail = { path = "../chrs-mail" }
|
|
chrs-graph = { path = "../chrs-graph" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
uuid = { version = "1.0", features = ["v4"] }
|
|
chrono = "0.4"
|