-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (26 loc) · 882 Bytes
/
Cargo.toml
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
27
[package]
name = "canvas-grading"
authors = ["Grant Lemons <[email protected]>"]
version = "0.2.2"
edition = "2021"
description = "CLI tool used to fetch submissions and upload grades to and from Canvas LMS"
repository = "https://github.com/grantlemons/canvas-grading/"
license = "AGPL-3.0-only"
readme = "README.md"
keywords = ["canvas", "lms", "canvas-cli"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0.95"
clap = { version = "4.5.26", features = ["derive"] }
clap_complete = "4.5.42"
dirs = "5.0.1"
itertools = "0.14.0"
reqwest = { version = "0.12.12", features = ["multipart"] }
serde = { version = "1.0.217", features = ["serde_derive"] }
serde_json = "1.0.135"
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["rt", "macros", "rt-multi-thread"] }
tokio-macros = "2.5.0"
toml = "0.8.19"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"