Authenticator/Cargo.toml

43 lines
912 B
TOML
Raw Normal View History

2019-09-03 00:07:06 +00:00
[package]
name = "authenticator"
version = "0.1.0"
edition = "2018"
[dependencies]
log = "0.4"
2020-10-28 01:52:54 +01:00
gettext-rs= { version = "0.5", features = ["gettext-system"] }
2019-09-03 00:07:06 +00:00
pretty_env_logger = "0.3"
lazy_static = "1.3"
2020-10-28 07:03:48 +01:00
anyhow = "1.0"
2019-09-03 00:07:06 +00:00
diesel = { version = "1.4", features = ["sqlite", "r2d2"] }
diesel_migrations = { version = "1.4" , features = ["sqlite"] }
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
nanoid = "0.1"
reqwest = "0.9"
url = "2.1"
2020-10-28 01:52:54 +01:00
gtk-macros = "0.2"
[dependencies.gtk]
git = "https://github.com/gtk-rs/gtk4"
package = "gtk4"
[dependencies.glib]
git = "https://github.com/gtk-rs/glib"
[dependencies.gio]
git = "https://github.com/gtk-rs/gio"
[dependencies.gdk]
git = "https://github.com/gtk-rs/gdk4"
package = "gdk4"
[dependencies.libhandy]
git = "https://gitlab.gnome.org/bilelmoussaoui/libhandy4-rs"
package = "libhandy4"
[dependencies.gdk-pixbuf]
git = "https://github.com/gtk-rs/gdk-pixbuf"