1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
[package]
name = "edu-sync-cli"
version = "0.3.2"
authors = ["Martin Kröning <mkroening@posteo.net>"]
edition = "2021"
description = "Moodle synchronization utility (CLI)."
repository = "https://github.com/mkroening/edu-sync"
license = "GPL-3.0-only"
keywords = ["moodle", "synchronization", "download"]
categories = ["command-line-utilities"]
[dependencies]
edu-sync = { path = "../edu-sync" }
anyhow = "1.0"
clap = { version = "4", features = ["derive"] }
dialoguer = "0.11"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
human-panic = "2"
indicatif = "0.17"
portable-atomic = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] }
tracing = "0.1"
tracing-subscriber = "0.3"
url = "2.2"
clap_complete = { version = "4.5.47", features = ["unstable-dynamic"] }
|