* Testing different db on various async runtime * Test on various runtime * No explicit cargo build step * Cargo build with features * Hotfix * With actix_rt * Only tests "runtime-async-std-native-tls" for now
15 lines
403 B
TOML
15 lines
403 B
TOML
[package]
|
|
name = "sea-orm-codegen-example"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
async-std = { version = "^1.9", features = [ "attributes" ] }
|
|
sea-orm = { path = "../../" }
|
|
sea-orm-codegen = { path = "../../sea-orm-codegen" }
|
|
sea-query = { version = "^0.12" }
|
|
strum = { version = "^0.20", features = [ "derive" ] }
|
|
serde_json = { version = "^1" }
|
|
quote = { version = "^1" }
|