* 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
13 lines
339 B
TOML
13 lines
339 B
TOML
[package]
|
|
name = "sea-orm-sqlx-mysql-example"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
async-std = { version = "^1.9", features = [ "attributes" ] }
|
|
sea-orm = { path = "../../" }
|
|
serde_json = { version = "^1" }
|
|
futures = { version = "^0.3" }
|
|
async-stream = { version = "^0.3" }
|
|
futures-util = { version = "^0.3" } |