Skip to content
Snippets Groups Projects
Select Git revision
  • e10c70ce68b4710f19d5994acd13f232bd786338
  • master default protected
  • ypodlesov/unite-projection
  • max/parse-anonymous-blocks
  • sd/constant
  • docs/server_setup
  • ekhamitov/union-types
  • docs/privileges
  • sd/2244-issue
  • raiondesu/1984-used-tier-memory
  • lomakin/adr-client-bucket-awareness
  • lomakin/insert-query-sharding-metadata
  • 25.4 protected
  • kirovets_doc
  • ekhamitov/1977-remove-additional-child
  • gmoshkin/box-error-improvements
  • astrochuk/explain-fix
  • dkoltsov/support-https
  • docs/config_storage
  • ekhamitov/2365-fix-flaky
  • kostja-check-quorum
  • 25.4.4 protected
  • 25.3.8 protected
  • 25.3.7 protected
  • 25.4.3 protected
  • 25.3.6 protected
  • 25.4.2 protected
  • 25.3.5 protected
  • 25.4.1 protected
  • 25.5.0 protected
  • 25.3.4 protected
  • 25.3.3 protected
  • 25.3.2 protected
  • 25.4.0 protected
  • 25.3.1 protected
  • 25.2.4 protected
  • 25.2.3 protected
  • 25.2.2 protected
  • 25.2.1 protected
  • 25.3.0 protected
  • 25.1.2 protected
41 results

Cargo.toml

Blame
  • user avatar
    Denis Smirnov authored
    1. Implement columns (with types) and tables as a part of IR.
    2. Use serde deserialization trait to build tables from YAML files.
       It would be also helpful when writing tests for arbitrary plan
       transformations.
    ee45da42
    History
    This project manages its dependencies using Cargo. Learn more
    Cargo.toml 475 B
    [package]
    name = "sbroad"
    version = "0.1.0"
    authors = ["Igor Kuznetsov <kuznetsovin@gmail.com>"]
    edition = "2018"
    
    # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
    
    [dependencies]
    decimal = "2.1.0"
    tarantool = "0.4.2"
    sqlparser = "0.11.0"
    serde = { version = "1.0", features = ["derive"] }
    serde_yaml = "0.8"
    fasthash = "0.4.0"
    yaml-rust = "0.4.1"
    
    [dev-dependencies]
    pretty_assertions = "1.0.0"
    
    [lib]
    crate-type = ["cdylib"]