scriptmark 0.2.0

Automated grading CLI for student programming assignments
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "scriptmark"
version = "0.2.0"
authors = ["Acture <acturea@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Automated grading CLI for student programming assignments"
homepage = "https://github.com/Acture/ScriptMark"
readme = "README.md"
keywords = [
    "grading",
    "education",
    "autograding",
    "cli",
]
categories = ["command-line-utilities"]
license = "GPL-3.0-or-later"
repository = "https://github.com/Acture/ScriptMark"
resolver = "2"

[lib]
name = "scriptmark"
path = "src/lib.rs"

[[bin]]
name = "scriptmark"
path = "src/main.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[dependencies.anyhow]
version = "1"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.comfy-table]
version = "7"

[dependencies.crossterm]
version = "0.29"

[dependencies.csv]
version = "1"

[dependencies.libc]
version = "0.2"

[dependencies.owo-colors]
version = "4"

[dependencies.quick-xml]
version = "0.37"
features = ["serialize"]

[dependencies.rand]
version = "0.9"

[dependencies.ratatui]
version = "0.29"

[dependencies.regex]
version = "1"

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "rustls-tls",
]
default-features = false

[dependencies.rhai]
version = "1"

[dependencies.rusqlite]
version = "0.34"
features = ["bundled"]

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.toml]
version = "0.8"

[dependencies.zip]
version = "8"
features = ["deflate"]
default-features = false

[dev-dependencies.tempfile]
version = "3"