You've already forked flix
30 lines
584 B
TOML
30 lines
584 B
TOML
[package]
|
|
name = "flix-model"
|
|
version = "0.0.9"
|
|
|
|
categories = []
|
|
description = "Core types for flix data"
|
|
repository = "https://github.com/QuantumShade/flix"
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license-file.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
serde = ["dep:serde"]
|
|
|
|
[dependencies]
|
|
seamantic = { workspace = true }
|
|
|
|
serde = { workspace = true, optional = true, features = ["std", "derive"] }
|
|
thiserror = { workspace = true }
|