mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
Use workspace package info in more crates; mark private for cargo-deny
This commit is contained in:
parent
50992972d8
commit
0ac7969e2a
13 changed files with 31 additions and 11 deletions
|
@ -1,8 +1,12 @@
|
|||
[package]
|
||||
name = "archives"
|
||||
version = "0.0.0"
|
||||
authors = ["Ankitects Pty Ltd"]
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
||||
version.workspace = true
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
camino = "1.1.1"
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[package]
|
||||
name = "configure"
|
||||
publish = false
|
||||
|
||||
version.workspace = true
|
||||
authors.workspace = true
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[package]
|
||||
name = "ninja_gen"
|
||||
publish = false
|
||||
|
||||
version.workspace = true
|
||||
authors.workspace = true
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[package]
|
||||
name = "runner"
|
||||
publish = false
|
||||
|
||||
version.workspace = true
|
||||
authors.workspace = true
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[package]
|
||||
name = "ftl"
|
||||
publish = false
|
||||
|
||||
version.workspace = true
|
||||
authors.workspace = true
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[package]
|
||||
name = "rsbridge"
|
||||
publish = false
|
||||
description = "Anki's Rust library code Python bindings"
|
||||
|
||||
version.workspace = true
|
||||
|
|
|
@ -5,6 +5,7 @@ authors = ["Ankitects Pty Ltd and contributors <https://help.ankiweb.net>"]
|
|||
build = "build.rs"
|
||||
edition = "2021"
|
||||
license = "AGPL-3.0-or-later"
|
||||
publish = false
|
||||
rust-version = "1.64"
|
||||
|
||||
[dependencies]
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[package]
|
||||
name = "makeapp"
|
||||
publish = false
|
||||
|
||||
version.workspace = true
|
||||
authors.workspace = true
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[package]
|
||||
name = "makeinstall"
|
||||
publish = false
|
||||
|
||||
version.workspace = true
|
||||
authors.workspace = true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
[package]
|
||||
name = "anki"
|
||||
build = "build/main.rs"
|
||||
publish = false
|
||||
description = "Anki's Rust library code"
|
||||
|
||||
version.workspace = true
|
||||
|
|
|
@ -1,12 +1,15 @@
|
|||
[package]
|
||||
name = "anki_i18n"
|
||||
version = "0.0.0"
|
||||
authors = ["Ankitects Pty Ltd and contributors"]
|
||||
build = "build/main.rs"
|
||||
edition = "2021"
|
||||
license = "AGPL-3.0-or-later"
|
||||
publish = false
|
||||
description = "Anki's Rust library i18n code"
|
||||
|
||||
version.workspace = true
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
[lib]
|
||||
name = "anki_i18n"
|
||||
path = "src/lib.rs"
|
||||
|
|
|
@ -1,11 +1,14 @@
|
|||
[package]
|
||||
name = "anki_i18n_helpers"
|
||||
version = "0.0.0"
|
||||
authors = ["Ankitects Pty Ltd and contributors"]
|
||||
edition = "2021"
|
||||
license = "AGPL-3.0-or-later"
|
||||
publish = false
|
||||
description = "Helpers for Anki's i18n system"
|
||||
|
||||
version.workspace = true
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
[lib]
|
||||
name = "anki_i18n_helpers"
|
||||
path = "src/lib.rs"
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[package]
|
||||
name = "linkchecker"
|
||||
publish = false
|
||||
|
||||
version.workspace = true
|
||||
authors.workspace = true
|
||||
|
|
Loading…
Reference in a new issue