2024-09-05 07:32:31 +02:00
|
|
|
# SPDX-FileCopyrightText: 2024 Christina Sørensen
|
2024-03-15 09:55:00 +01:00
|
|
|
#
|
2024-09-05 07:32:31 +02:00
|
|
|
# SPDX-License-Identifier: EUPL-1.2
|
2024-03-15 09:55:00 +01:00
|
|
|
|
2024-09-05 07:32:31 +02:00
|
|
|
[workspace]
|
|
|
|
resolver = "2"
|
|
|
|
members = ["crates/*", "crates/workspace-hack"]
|
|
|
|
|
|
|
|
[workspace.package]
|
2024-09-06 05:11:57 +02:00
|
|
|
description = "Guix weather, for nix!"
|
2024-09-06 06:39:45 +02:00
|
|
|
version = "0.0.2"
|
2024-09-05 07:32:31 +02:00
|
|
|
edition = "2021"
|
2024-09-06 05:11:57 +02:00
|
|
|
license = "EUPL-1.2"
|
|
|
|
authors = ["Christina Sørensen <christina@cafkafk.com>"]
|
|
|
|
categories = ["command-line-utilities"]
|
2024-03-15 09:55:00 +01:00
|
|
|
|
2024-09-08 15:04:35 +02:00
|
|
|
# Keep this on anything that isn't EOL, we'll be nice to nixpkgs as long as
|
|
|
|
# they don't literally actually unironically lock all our deps for us or go on
|
|
|
|
# EOL rustc >_>
|
|
|
|
#
|
|
|
|
# ...also if we wanna play with bench we can probably cfg gate that :p
|
|
|
|
rust-version = "1.80.1"
|
|
|
|
|
2024-09-05 07:32:31 +02:00
|
|
|
[workspace.metadata.crane]
|
|
|
|
name = "nix-weather"
|
2024-03-15 09:55:00 +01:00
|
|
|
|
2024-09-05 07:32:31 +02:00
|
|
|
[workspace.dependencies]
|
|
|
|
workspace-hack = { version = "0.1", path = "./crates/workspace-hack" }
|