The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
hyperlane-monorepo/rust/agents/scraper/migration/Cargo.toml

29 lines
668 B

[package]
name = "migration"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
name = "migration"
path = "src/lib.rs"
[dependencies]
tokio = { version = "1", features = ["rt", "macros"] }
sea-orm-migration = { version = "0.9", features = ["runtime-tokio-native-tls", "sqlx-postgres"] }
serde = { version = "1.0", features = ["derive"] }
abacus-core = { path = "../../../abacus-core" }
tracing-subscriber = { version = "0.3", optional = true }
tracing = { version = "0.1", optional = true }
[dependencies.sea-orm]
features = ["macros"]
# determined by sea-orm-migration
version = "*"
[[bin]]
name = "init-db"
path = "bin/init_db.rs"
[features]
default = []