fastc 0.1.0

A safe C-like language that compiles to C11
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"
rust-version = "1.85"
name = "fastc"
version = "0.1.0"
authors = ["Dipankar Sarkar <me@dipankar.name>"]
build = false
include = [
    "src/**/*",
    "Cargo.toml",
    "README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A safe C-like language that compiles to C11"
homepage = "https://github.com/Skelf-Research/fastc"
documentation = "https://docs.skelfresearch.com/fastc"
readme = "README.md"
keywords = [
    "compiler",
    "transpiler",
    "c",
    "systems-programming",
    "safe",
]
categories = [
    "compilers",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/Skelf-Research/fastc"
resolver = "2"

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

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

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

[dependencies.dirs]
version = "6"

[dependencies.git2]
version = "0.20"

[dependencies.indexmap]
version = "2"

[dependencies.logos]
version = "0.15"

[dependencies.miette]
version = "7"
features = ["fancy"]

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

[dependencies.thiserror]
version = "2"

[dependencies.toml]
version = "0.8"

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.insta]
version = "1.42"
features = ["yaml"]

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

[dev-dependencies.trycmd]
version = "0.15"