update Cargo.toml

This commit is contained in:
Alexandre Pasmantier 2024-10-13 23:53:43 +02:00
parent ef4ab705b4
commit ac9200d972
2 changed files with 13 additions and 14 deletions

20
Cargo.lock generated
View File

@ -2991,16 +2991,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
[[package]] [[package]]
name = "television-derive" name = "television"
version = "0.1.0"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.79",
]
[[package]]
name = "television-rs"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
@ -3047,6 +3038,15 @@ dependencies = [
"vergen-gix", "vergen-gix",
] ]
[[package]]
name = "television-derive"
version = "0.1.0"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.79",
]
[[package]] [[package]]
name = "tempfile" name = "tempfile"
version = "3.13.0" version = "3.13.0"

View File

@ -1,9 +1,9 @@
[package] [package]
name = "television-rs" name = "television"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
description = "The revolution will be televised" description = "The revolution will be televised."
license = "Apache-2.0" license = "MIT"
authors = ["Alexandre Pasmantier <alex.pasmant@gmail.com>"] authors = ["Alexandre Pasmantier <alex.pasmant@gmail.com>"]
build = "build.rs" build = "build.rs"
repository = "https://github.com/alexpasmantier/television" repository = "https://github.com/alexpasmantier/television"
@ -21,7 +21,6 @@ bench = false
path = "crates/television/main.rs" path = "crates/television/main.rs"
name = "tv" name = "tv"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace] [workspace]
members = [ members = [
"crates/television_derive", "crates/television_derive",