# tycj_orm - 仓颉语言 ORM 框架
# 版本 1.0.0
#
# 提供数据库 ORM 功能:
# - 数据库连接池管理
# - SQL 查询构建器(SELECT/INSERT/UPDATE/DELETE)
# - 实体映射与元数据
# - 事务管理
# - 多数据源支持
# - SQL 方言支持

[package]
  cjc-version = "1.1.0"
  name = "tycj_orm"
  organization = "tybb2026"
  description = "仓颉语言 ORM 框架 - 提供数据库连接池、查询构建器、实体映射、事务管理等功能"
  version = "1.0.0"
  target-dir = ""
  script-dir = ""
  output-type = "static"
  compile-option = "-Woff unused -Woff deprecated"
  override-compile-option = ""
  link-option = ""
  package-configuration = {}

[dependencies]
  # 当前无外部依赖,所有功能使用仓颉标准库实现

[test-dependencies]

[[test]]
name = "test_query"
source-dir = "tests"

[[test]]
name = "test_pool"
source-dir = "tests"

[[test]]
name = "test_enterprise"
source-dir = "tests"

[[test]]
name = "test_transaction"
source-dir = "tests"

[[test]]
name = "test_driver"
source-dir = "tests"

[[test]]
name = "test_entity"
source-dir = "tests"

[[test]]
name = "test_mod"
source-dir = "tests"