fix cargo.toml version

This commit is contained in:
Manuel Gugger 2023-01-17 12:13:13 +01:00
parent 089670b619
commit 0258434c54
3 changed files with 6 additions and 4 deletions

4
.gitignore vendored
View File

@ -29,4 +29,6 @@ _site/
vendor/ vendor/
# Ignore File Uploads # Ignore File Uploads
file_uploads/ file_uploads/
*.lock

View File

@ -32,7 +32,7 @@ itertools = "^0.10.5"
serde = "^1.0.152" serde = "^1.0.152"
serde_derive = "^1.0.152" serde_derive = "^1.0.152"
sea-orm = { version = "^0.10.6", features = [], default-features = false } 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" derive_more = "0.99.17"
[dev-dependencies] [dev-dependencies]

View File

@ -1,6 +1,6 @@
# Actix Admin # 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 ## Usage
@ -8,4 +8,4 @@ See the [documentation](https://mgugger.github.io/actix-admin/) at [https://mgug
## Example ## 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/```. 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/```.