Publish sea-orm-cli

This commit is contained in:
Chris Tsang 2021-08-08 02:41:37 +08:00
parent d27d94ff55
commit 9ee4c24114

View File

@ -3,13 +3,12 @@ name = "sea-orm-cli"
version = "0.1.0" version = "0.1.0"
authors = [ "Billy Chan <ccw.billy.123@gmail.com>" ] authors = [ "Billy Chan <ccw.billy.123@gmail.com>" ]
edition = "2018" edition = "2018"
description = "" description = "Command line utility for SeaORM"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/sea-orm" documentation = "https://docs.rs/sea-orm"
repository = "https://github.com/SeaQL/sea-orm" repository = "https://github.com/SeaQL/sea-orm"
categories = [ "database" ] categories = [ "database" ]
keywords = [ "orm", "database", "sql", "mysql", "postgres", "sqlite", "cli" ] keywords = ["async", "orm", "mysql", "postgres", "sqlite"]
publish = false
[[bin]] [[bin]]
name = "sea-orm-cli" name = "sea-orm-cli"
@ -19,8 +18,8 @@ path = "src/main.rs"
clap = { version = "^2.33.3" } clap = { version = "^2.33.3" }
dotenv = { version = "^0.15" } dotenv = { version = "^0.15" }
async-std = { version = "^1.9", features = [ "attributes" ] } async-std = { version = "^1.9", features = [ "attributes" ] }
sea-orm = { path = "..", features = [ "sqlx-all" ] } sea-orm = { version = "^0.1", features = [ "sqlx-all" ] }
sea-orm-codegen = { path = "../sea-orm-codegen" } sea-orm-codegen = { version = "^0.1" }
sea-schema = { version = "^0.2.4", default-features = false, features = [ sea-schema = { version = "^0.2.4", default-features = false, features = [
"sqlx-mysql", "sqlx-mysql",
"sqlx-postgres", "sqlx-postgres",