diff --git a/.gitignore b/.gitignore index 378983e..2ad4b9e 100644 --- a/.gitignore +++ b/.gitignore @@ -29,4 +29,6 @@ _site/ vendor/ # Ignore File Uploads -file_uploads/ \ No newline at end of file +file_uploads/ + +*.lock \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 6f1eaf1..4ca4072 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ itertools = "^0.10.5" serde = "^1.0.152" serde_derive = "^1.0.152" sea-orm = { version = "^0.10.6", features = [], default-features = false } -actix-admin-macros = { version = "0.2.0", path = "actix_admin_macros" } +actix-admin-macros = { version = "0.3.0", path = "actix_admin_macros" } derive_more = "0.99.17" [dev-dependencies] diff --git a/README.md b/README.md index 1b326e0..e7a094a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Actix Admin - The actix-admin crate aims at creating a web admin interface similar to other admin interfaces (such as [flask-admin](https://github.com/flask-admin/flask-admin) in python). + The actix-admin crate aims at creating a web admin interface similar to other admin interfaces (such as [flask-admin](https://github.com/flask-admin/flask-admin)). ## Usage @@ -8,4 +8,4 @@ See the [documentation](https://mgugger.github.io/actix-admin/) at [https://mgug ## Example -Check the [example](https://github.com/mgugger/actix-admin/tree/main/example) and run with ```cargo run```. The admin interface is accessible under ```localhost:5000/admin/```. \ No newline at end of file +Check the [example](https://github.com/mgugger/actix-admin/tree/main/example) and run with ```cargo run --example basic``` from the root folder. The admin interface is accessible under ```localhost:5000/admin/```. \ No newline at end of file