-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (26 loc) · 1.18 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "ai-lab"
version = "0.1.0"
edition = "2021"
readme = "README.org"
authors = ["Felix Drees", ] # TEMPLATE: "Bob <bob@domain.tld>",
description = "GUI for annotating, training, and evaluating AI models, simplifying workflows for data scientists."
repository = "https://github.com/felixbd/ai-lab"
license = "GPL-3.0 license"
# license-file = "LICENSE"
keywords = ["ai", "ml", "gtk", "gui"]
publish = false
[badges]
maintenance = { status = "actively-developed" }
[lints.rust]
unsafe_code = "forbid" # { level = "forbid", priority = 0 }
[lints.clippy]
# msrv = "1.30.0"
enum_glob_use = "deny"
[dependencies] # see: https://crates.io/
# NOTE: maybe use `log` and `env_logger` instead of custom debug print
gtk = { version = "0.8.2", package = "gtk4" } # GUI - Rust GTK 4 bindings
glib = "0.19.8" # GUI - Rust GLib and GObject bindings
toml = "0.8.14" # parsing .toml config files
serde = { version = "1.0.203", features = ["derive"] } # erialization .toml config files
home = "0.5.9" # Canonical definitions of home_dir, cargo_home, and rustup_home.